-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdynamic_controls.py
More file actions
64 lines (48 loc) · 2.63 KB
/
dynamic_controls.py
File metadata and controls
64 lines (48 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import unittest
from pyunitreport import HTMLTestRunner
from selenium.webdriver.common.by import By
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium import webdriver
from time import sleep
import webbrowser
import os
class AddRemoveElements(unittest.TestCase):
def setUp(self) -> None:
self.driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()))
driver = self.driver
driver.maximize_window()
driver.get("http://the-internet.herokuapp.com/")
sleep(2)
driver.find_element(By.LINK_TEXT, 'Dynamic Controls').click()
sleep(3)
def test_name_elements(self):
driver = self.driver
checkbox = driver.find_element(By.CSS_SELECTOR, '#checkbox > input[type=checkbox]')
checkbox.click()
remove_add_button = driver.find_element(By.CSS_SELECTOR, '#checkbox-example > button')
remove_add_button.click()
# Desaparece el checkbox, y el boton queda inutilizable, por lo que debemos esperar que esté disponible nuevamente antes de volver a usarlo:
WebDriverWait(driver, 15).until(EC.element_to_be_clickable((By.CSS_SELECTOR, '#checkbox-example > button')))
remove_add_button.click()
enable_disable_button = driver.find_element(By.CSS_SELECTOR, '#input-example > button')
enable_disable_button.click()
# Se habilita el input pero debemos esperar a que el botón sea clickeable para poder escribir en el mismo:
WebDriverWait(driver, 15).until(EC.element_to_be_clickable((By.CSS_SELECTOR, '#input-example > button')))
input_text = driver.find_element(By.CSS_SELECTOR, '#input-example > input[type=text]').click()
input_text.send_keys('Mariano Gobea')
sleep(3)
enable_disable_button.click()
def tearDown(self) -> None:
driver = self.driver
driver.implicitly_wait(3)
self.driver.close()
# Ruta al ejecutable de Google Chrome:
chrome_path = "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe"
# Abrir el archivo HTML generado como reporte al finalizar el script:
webbrowser.register('chrome', None, webbrowser.BackgroundBrowser(chrome_path))
webbrowser.get('chrome').open('file://' + os.path.realpath('reports/single-reports/dynamic-controls-report.html'))
if __name__ == '__main__':
unittest.main(verbosity= 2, testRunner= HTMLTestRunner(output= './single-reports', report_name='dynamic-controls-report'))