-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathui_test_basics5.py
80 lines (70 loc) · 3.27 KB
/
ui_test_basics5.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import unittest
from datetime import datetime # to support the screenshot feature
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as ec
from selenium.webdriver.common.by import By
from selenium.common.exceptions import TimeoutException
class UITest(unittest.TestCase):
@classmethod
def setUpClass(cls):
# test will be performed in Chrome
cls.driver = webdriver.Chrome()
# open page in Chrome
def test_1_title(self):
self.driver.get('http://www.google.com')
self.assertEqual(
self.driver.title,
'Google')
# fill search field
def test_2_search_by_name(self):
# negative test case - it will shown in report like Passed
# the code was improved to show how the screenshot-on-error functionality can be used in the test case
try:
self.driver.get('http://www.google.com2@#')
search_input = self.driver.find_element_by_name("q")
search_input.send_keys("Python Selenium test driven testing")
search_input.submit()
except Exception as e:
print e
now = datetime.now().strftime('%Y-%m-%d_%H-%M-%S')
self.driver.get_screenshot_as_file('screenshot-%s.png' % now)
# in case of positive test case you need to add here 'raise' to raise the exception
# in that case the test case will be shown in report like Failed
# raise
# the same as test_2_searchbyname - the element will be defined by XPATH
def test_3_search_by_xpath(self):
self.driver.get('http://www.google.com')
# search_input = self.driver.find_element_by_xpath('//*[@id="q"]') //*[@id="lst-ib"]
search_input = self.driver.find_element_by_xpath('//*[@id="lst-ib"]')
search_input.send_keys("XPath")
search_input.submit()
# will wait until the element is loaded but not longer as defined in variable
# Note: you have to extend your imports:
# from selenium.webdriver.support.ui import WebDriverWait
# from selenium.webdriver.support import expected_conditions as EC
# from selenium.webdriver.common.by import By
# from selenium.common.exceptions import TimeoutException
def test_4_wait_until_loaded(self):
self.driver.get('http://www.google.com')
# seconds to wait for the element to appear
delay = 20
try:
WebDriverWait(self.driver, delay).until(ec.presence_of_element_located((By.ID, 'hplogo')))
print "Loading successful!"
except TimeoutException:
print "Loading took too much time!"
# will wait until the element is clickable (available to click) but not longer as defined in WebDriverWait
# (for this example it is 20 seconds)
def test_5_wait_until_clickable(self):
self.driver.get('http://toolsqa.com')
try:
WebDriverWait(self.driver, 20).until(ec.element_to_be_clickable((By.XPATH, '//*[@id="main-nav"]/li[2]/a')))
except TimeoutException:
print "'Tutorials' button not available!"
# close the browser window
@classmethod
def tearDownClass(cls):
cls.driver.quit()
if __name__ == "__main__":
unittest.main()