-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdynamic_elemets.py
53 lines (39 loc) · 1.66 KB
/
dynamic_elemets.py
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
import unittest
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.common.by import By
from time import sleep
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
class NavigationTest(unittest.TestCase):
def setUp(self):
options = webdriver.ChromeOptions()
options.add_experimental_option('excludeSwitches', ['enable-logging'])
s = Service(ChromeDriverManager().install())
self.driver = webdriver.Chrome(service = s, options = options)
driver = self.driver
driver.get('http://the-internet.herokuapp.com/disappearing_elements')
driver.maximize_window
driver.implicitly_wait(10)
def test_name_elements(self):
driver = self.driver
options = []
menu = 5
tries = 1
while len(options)<5 :
options.clear()
for i in range(menu):
try:
option_name = driver.find_element(By.XPATH,f'/html/body/div[2]/div/div/ul/li[{i+1}]/a')
options.append(option_name.text)
print(options)
except:
print(f"Option number {i+1} is NOT FOUND")
tries += 1
driver.refresh()
print(f"Finished in {tries} tries")
def tearDown(self):
self.driver.quit()
if __name__ == '__main__':
unittest.main(verbosity = 2)