Skip to content

Commit

Permalink
test: increase timeout for client WASM headless browser tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dlachaume committed Jul 29, 2024
1 parent 52a7beb commit 25b966e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/scripts/run-wasm-tests-browser-headless.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ def run_headless_test():
try:
driver.get('http://localhost:8080/')

# Adjust the timeout to 3 minutes
wait = WebDriverWait(driver, 180)
# Adjust the timeout to 10 minutes
wait = WebDriverWait(driver, 600)

# Wait until the div with id "tests_finished" is displayed
tests_finished_element = wait.until(EC.presence_of_element_located((By.ID, "tests_finished")))
Expand Down

0 comments on commit 25b966e

Please sign in to comment.