-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSeleniumTestCase.py
More file actions
277 lines (235 loc) · 12.3 KB
/
Copy pathSeleniumTestCase.py
File metadata and controls
277 lines (235 loc) · 12.3 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
# encoding: utf-8
from __future__ import print_function
import unittest
import os
from contextlib import contextmanager
from urlparse import urlparse, urljoin
from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By
from selenium.webdriver.common.alert import Alert
from selenium.webdriver.support.ui import Select, WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.common.exceptions import TimeoutException
from selenium.webdriver.ie.webdriver import DEFAULT_TIMEOUT
class SeleniumTestCase(unittest.TestCase):
DEFAULT_TIMEOUT = 24 # seconds
@classmethod
def setUpClass(cls):
cls._annotate_test_methods_to_make_a_screenshot_if_they_fail()
cls._read_credentials()
def setUp(self):
if self.ac_driver == 'Chrome':
# This is currently not required for chromedriver, but it or a similar flag may be in the future to allow CredentialedURLs at all
# options = webdriver.ChromeOptions()
# options.add_argument('--disable-blink-features=BlockCredentialedSubresources')
options.binary_location = self.chrome_path
self.driver = webdriver.Chrome(options=options)
else:
profile = webdriver.FirefoxProfile();
profile.set_preference("network.http.phishy-userpass-length", 255)
self.driver = webdriver.Firefox(profile, firefox_binary=self.firefox_path)
# this ensures all find_element* methods retry up to 10 seconds for the searched
# element to appear in the dom. Essential if testing AJAX stuff.
self.driver.implicitly_wait(self.DEFAULT_TIMEOUT)
# This does _not_ make explicit waits unneccessary though!
# @see http://selenium-python.readthedocs.io/waits.html#explicit-waits
# if this fails, you probably need to update your geckodriver
# @see https://github.com/mozilla/geckodriver/releases
self.addCleanup(self.driver.close)
## Low level test helpers
def _wait(self, condition, timeout=DEFAULT_TIMEOUT):
return WebDriverWait(self.driver, timeout).until(condition)
def _wait_for_text(self, text, timeout=DEFAULT_TIMEOUT):
return self._wait(EC.text_to_be_present_in_element((By.CSS_SELECTOR, 'body'), text), timeout=timeout)
def _find_element(self, by, value, timeout=DEFAULT_TIMEOUT):
print("_find_element",by,value)
return self._wait(EC.visibility_of_element_located((by, value)), timeout=timeout)
# Modeled after http://www.obeythetestinggoat.com/how-to-get-selenium-to-wait-for-page-load-after-a-click.html
@contextmanager
def _wait_for_page_load(self, timeout=DEFAULT_TIMEOUT, roottag='body'):
old_page = self.driver.find_element_by_tag_name('html')
yield
self._wait(EC.staleness_of(old_page), timeout=timeout)
# wait for javascript to be loaded (@see bootstrap.plugin.zmi.js)
root = self._find_element(By.CSS_SELECTOR, roottag, timeout=timeout)
classes = root.get_attribute("class").split(' ')
if 'zmi' in classes and 'loading' in classes:
self._find_element(By.CSS_SELECTOR, roottag+'.loaded', timeout=timeout)
def _wait_for_ajax(self, script, timeout=DEFAULT_TIMEOUT):
source = self.driver.page_source
self.driver.execute_script(script)
def compare_source(driver):
try:
return source != driver.page_source
except WebDriverException:
pass
WebDriverWait(self.driver, timeout).until(compare_source)
# workaround for https://github.com/mozilla/geckodriver/issues/322
# where the click sometimes is swallowed. Should be fixed in the comming weeks
def _wait_for_click(self, element, by, value, maxtries=2):
print("_wait_for_click:",element,by,value,maxtries)
t = 0
while t < maxtries:
t += 1
print("_wait_for_click:",t)
try:
self._wait(lambda driver: element.is_displayed() and element.is_enabled())
element.click()
condition = self._find_element(by,value)
return
except TimeoutException:
print("_wait_for_click: timeout - repeat")
if t == maxtries:
raise TimeoutException
def _reload_page(self):
return self.driver.get(self.driver.current_url)
## High level test helpers
def _login(self):
login_url = urljoin(self.base_url, '/manage_main')
# would be the propper way to login, but is not supported by geckodriver/ chromedriver yet
# self.driver.switch_to.alert.authenticate(self.login, self.password)
# Disabled because it works only in firefox
# if self.driver == 'Firefox':
# self.driver.get(login_url)
# self.driver.switch_to.alert.send_keys(self.login + Keys.TAB + self.password)
# self.driver.switch_to.alert.accept()
# else:
import urlparse
components = urlparse.urlsplit(login_url)
credentials = '%s:%s@' % (self.login, self.password)
components_with_auth = urlparse.SplitResult(components[0], credentials + components[1], *components[2:])
self.driver.get(urlparse.urlunsplit(components_with_auth))
def _create_or_navigate_to_zms(self):
# expects to be logged in
# ensure we're on the manage_main page
self._wait_for_text('Control_Panel')
if 0 == len(self.driver.find_elements(By.LINK_TEXT, 'sites')):
# create folder
select = Select(self._find_element(By.CSS_SELECTOR, 'select[name=":action"]'))
try:
with self._wait_for_page_load(timeout=5):
# doesn't trigger the page load if 'Folder' is already the choice made last time
select.select_by_visible_text('Folder')
except TimeoutException:
with self._wait_for_page_load():
self._find_element(By.NAME, 'submit').click()
self._find_element(By.NAME, 'id').send_keys('sites')
with self._wait_for_page_load():
self._find_element(By.CSS_SELECTOR, 'input[type="submit"][value="Add"]').click()
with self._wait_for_page_load():
self._find_element(By.LINK_TEXT, 'sites').click()
# detail page has loaded
self._find_element(By.CSS_SELECTOR, 'input[value="Import/Export"]') # finished loading
if 0 == len(self.driver.find_elements(By.PARTIAL_LINK_TEXT, 'zms (ZMS - Python-based contentmanagement')):
# create zms
# if no link with zms is there
try:
with self._wait_for_page_load(timeout=5):
# doesn't trigger the page load if 'ZMS' is already the choice made last time
Select(self._find_element(By.CSS_SELECTOR, 'select[name=":action"]')).select_by_visible_text('ZMS')
except TimeoutException:
with self._wait_for_page_load():
self._find_element(By.NAME, 'submit').click()
# zms add page has loaded
self._wait_for_text('Add ZMS-Instance')
folder_id = self._find_element(By.ID, 'folder_id')
folder_id.clear()
folder_id.send_keys('zms')
with self._wait_for_page_load(timeout=50): # this can take a while
self._find_element(By.CSS_SELECTOR, 'button[value="Add"]').click()
else:
with self._wait_for_page_load():
self._find_element(By.PARTIAL_LINK_TEXT, 'zms (ZMS - Python-based contentmanagement').click()
with self._wait_for_page_load():
self._find_element(By.PARTIAL_LINK_TEXT, 'content').click()
# zms content edit page has loaded
self._wait_for_text('ZMS - Python-based contentmanagement system')
## Plumbing
def _unique_test_output_filename(self, file_name_suffix, file_type):
assert None not in (file_name_suffix, file_type), 'need strings here'
def generate_path(file_name_suffix, file_type):
if file_name_suffix != '':
file_name_suffix = '-' + file_name_suffix
target_directory = os.path.join(
os.path.dirname(os.path.dirname(os.path.abspath(__file__))),
'test_output')
prefix = '.'.join((
self.__class__.__module__,
self.__class__.__name__,
self._testMethodName))
return os.path.join(target_directory, prefix + file_name_suffix + '.' + file_type)
target_filename = generate_path(file_name_suffix, file_type)
counter = 0
while os.path.exists(target_filename):
target_filename = generate_path(file_name_suffix + str(counter), file_type)
counter += 1
return target_filename
def _save_screenshot_of_current_page(self, optional_file_name_suffix=''):
target_filename = self._unique_test_output_filename(optional_file_name_suffix, 'png')
self.driver.get_screenshot_as_file(target_filename)
@classmethod
def _annotate_test_methods_to_make_a_screenshot_if_they_fail(cls):
test_methods = { name: getattr(cls, name) for name in dir(cls) if name.startswith('test') }
for name, method in test_methods.items():
import functools
functools.wraps(method)
def wrapper(self, *args, **kwargs):
try:
return method(self, *args, **kwargs)
except:
self._save_screenshot_of_current_page()
raise
setattr(cls, name, wrapper)
# REFACT rename read_config
@classmethod
def _read_credentials(cls):
here = os.path.dirname(os.path.abspath(__file__))
credentials_path = os.path.join(here, 'credentials.txt')
try:
from ConfigParser import SafeConfigParser
except ImportError:
# Python3
from configparser import SafeConfigParser
parser = SafeConfigParser()
parser.read(credentials_path)
parser.defaults()['driver'] = 'Firefox'
cls.ac_driver = parser.get('ac_server', 'driver')
cls.base_url = parser.get('ac_server', 'base_url')
cls.login = parser.get('ac_server', 'login')
cls.password = parser.get('ac_server', 'password')
cls.firefox_path = None
if parser.has_option('ac_server', 'firefox_path'):
cls.firefox_path = parser.get('ac_server', 'firefox_path')
class LoginTest(SeleniumTestCase):
def test_login(self):
self._login()
# only accessible if login worked
self._wait(EC.element_to_be_clickable((By.PARTIAL_LINK_TEXT, 'Control_Panel')))
self.driver.find_element_by_partial_link_text('Control_Panel').click()
self._wait_for_text('ZServer.HTTPServer.zhttp_server')
self.assertIn('ZServer.HTTPServer.zhttp_server', self.driver.page_source)
"""
class ScreenshotDemonstrationTest(SeleniumTestCase):
def test_the_importance_of_waiting(self):
# On fast systems, this test makes a screen shot before
# the page is loaded (showing a white screen).
# The take-away here is that you should always explicitly
# declare what element you want to wait for before interacting
# with it. Otherwise, tests will behave flakily, failing on
# particularly fast or slow systems.
self._login()
self._save_screenshot_of_current_page('before-wait')
self._wait_for_text('Contents')
self._save_screenshot_of_current_page('after-wait')
"""
"""
class ScreenshotAfterFailingTest(SeleniumTestCase):
def test_that_demonstrates_that_failing_tests_take_screenshots(self):
self._login()
self._wait_for_text('Contents')
self.fail('Intentionally failed test')
"""
if __name__ == "__main__":
unittest.main()