Augment delay in WebDriverWait in ui tests

This commit is contained in:
Théophile Diot 2023-10-04 14:37:41 +02:00
parent 8ae7b8f43b
commit 8f456722e0
No known key found for this signature in database
GPG Key ID: 248FEA4BAE400D06
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ with webdriver.Firefox(options=firefox_options) as driver:
try:
driver.delete_all_cookies()
driver.maximize_window()
driver_wait = WebDriverWait(driver, 30)
driver_wait = WebDriverWait(driver, 60)
print("Navigating to http://www.example.com/admin ...", flush=True)