Pruebas de software
De Wiki de EGC
Revisión del 11:13 28 oct 2020 de Ajramirez (discusión | contribuciones) (Página creada con «Página_Principal -> 2020/2021 -> Prácticas - 20/21 = Prerrequisitos = * Ver video de presentación aquí: [https://hdvirtual.us.es/discovirt/index.php/s/8oA...»)
Página_Principal -> 2020/2021 -> Prácticas - 20/21
Prerrequisitos
- Ver video de presentación aquí: aquí
- Instrucciones para la descarga de geckodriver en Linux 64 bits:
wget https://github.com/mozilla/geckodriver/releases/download/v0.27.0/geckodriver-v0.27.0-linux64.tar.gz
tar -xzf geckodriver-v0.27.0-linux64.tar.gz
chmod +x geckodriver
sudo cp geckodriver /usr/bin/
rm geckodriver-v0.27.0-linux64.tar.gz
- Código del script de selenium para probar su funcionamiento:
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
options = webdriver.FirefoxOptions()
options.headless = True
driver = webdriver.Firefox(options=options)
driver.get("https://www.google.com/")
print('Title: %s' % driver.title)
driver.quit()