-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathtest_simulating_browsing.py
51 lines (39 loc) · 1.44 KB
/
test_simulating_browsing.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
from selenium import webdriver
import time
import unittest
import dautil as dl
NAP_SECS = 10
class SeleniumTest(unittest.TestCase):
def setUp(self):
self.logger = dl.log_api.conf_logger(__name__)
self.browser = webdriver.Firefox()
def tearDown(self):
self.browser.quit()
def wait_and_click(self, toggle, text):
xpath = "//a[@data-toggle='{0}' and contains(text(), '{1}')]"
xpath = xpath.format(toggle, text)
elem = dl.web.wait_browser(self.browser, xpath)
elem.click()
def test_widget(self):
self.browser.implicitly_wait(NAP_SECS)
self.browser.get('http://localhost:8888/notebooks/test_widget.ipynb')
try:
# Cell menu
xpath = '//*[@id="menus"]/div/div/ul/li[5]/a'
link = dl.web.wait_browser(self.browser, xpath)
link.click()
time.sleep(1)
# Run all
xpath = '//*[@id="run_all_cells"]/a'
link = dl.web.wait_browser(self.browser, xpath)
link.click()
time.sleep(1)
self.wait_and_click('tab', 'Figure')
self.wait_and_click('collapse', 'figure.figsize')
except Exception:
self.logger.warning('Error while waiting to click', exc_info=True)
self.browser.quit()
time.sleep(NAP_SECS)
self.browser.save_screenshot('widgets_screenshot.png')
if __name__ == "__main__":
unittest.main()