Skip to content

Commit f73d3bf

Browse files
committed
Bump hover wait time in tooltip tests
1 parent ab4baff commit f73d3bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cesium_app/tests/frontend/test_tooltips.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@ def test_tab_tooltips(driver, project):
1111
hover = ActionChains(driver).move_to_element(
1212
driver.find_element_by_id('react-tabs-0'))
1313
hover.perform()
14-
time.sleep(0.8)
14+
time.sleep(1)
1515
assert driver.find_element_by_xpath(
1616
"//span[contains(text(),'Manage your projects')]"
1717
).is_displayed()
1818

1919
hover = ActionChains(driver).move_to_element(
2020
driver.find_element_by_id('react-tabs-2'))
2121
hover.perform()
22-
time.sleep(0.8)
22+
time.sleep(1)
2323
assert driver.find_element_by_xpath(
2424
"//span[contains(text(),'Upload your time-series data')]"
2525
).is_displayed()
2626

2727
hover = ActionChains(driver).move_to_element(
2828
driver.find_element_by_id('react-tabs-4'))
2929
hover.perform()
30-
time.sleep(0.8)
30+
time.sleep(1)
3131
assert driver.find_element_by_xpath(
3232
"//span[contains(text(),'Generate features from your time-series data')]"
3333
).is_displayed()

0 commit comments

Comments
 (0)