We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 934c7dd commit 08d0b56Copy full SHA for 08d0b56
notebook/tests/selenium/test_kernel_menu.py
@@ -49,7 +49,9 @@ def test_menu_items(notebook):
49
# Restart
50
# Selenium can't click the menu while a modal dialog is fading out
51
WebDriverWait(browser, 3).until(
52
- EC.element_to_be_clickable((By.ID, 'kernellink'))).click()
+ EC.invisibility_of_element((By.CSS_SELECTOR, '.modal-backdrop'))
53
+ )
54
+ kernel_menu.click()
55
56
wait_for_selector(browser, menu_item, visible=True, single=True).click()
57
WebDriverWait(browser, 10).until(
0 commit comments