Skip to content

Commit

Permalink
Increase timeout of CI notebook test (#529)
Browse files Browse the repository at this point in the history
  • Loading branch information
unkcpz committed Oct 20, 2023
1 parent ebc7120 commit 5b303df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests_notebooks/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,14 @@ def _selenium_driver(nb_path):
# By default, let's allow selenium functions to retry for 10s
# till a given element is loaded, see:
# https://selenium-python.readthedocs.io/waits.html#implicit-waits
selenium.implicitly_wait(10)
selenium.implicitly_wait(30)
window_width = 800
window_height = 600
selenium.set_window_size(window_width, window_height)

selenium.find_element(By.ID, "ipython-main-app")
selenium.find_element(By.ID, "notebook-container")
WebDriverWait(selenium, 100).until(
WebDriverWait(selenium, 240).until(
ec.invisibility_of_element((By.ID, "appmode-busy"))
)

Expand Down

0 comments on commit 5b303df

Please sign in to comment.