-
Notifications
You must be signed in to change notification settings - Fork 0
/
typos_checket.py
63 lines (42 loc) · 1.9 KB
/
typos_checket.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
54
55
56
57
58
59
60
61
62
63
from pickle import FALSE
import unittest
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.common.by import By
from time import sleep
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/typos')
driver.maximize_window
driver.implicitly_wait(10)
def test_Typos(self):
driver = self.driver
paragraph_to_check = driver.find_element(By.CSS_SELECTOR,'#content > div > p:nth-child(3)')
text_to_check = paragraph_to_check.text
print(text_to_check)
tries = 1
found = FALSE
correct_text = "Sometimes you'll see a typo, other times you won't."
while text_to_check != correct_text:
paragraph_to_check = driver.find_element(By.CSS_SELECTOR,'#content > div > p:nth-child(3)')
text_to_check = paragraph_to_check.text
tries +=1
driver.refresh()
while not found :
if text_to_check == correct_text:
driver.refresh()
found = True
self.assertEqual(found,True)
print(f"it took {tries} tries to find the typo")
def tearDown(self):
self.driver.quit()
if __name__ == '__main__':
unittest.main(verbosity = 2)