diff --git a/.github/workflows/scripts/run-wasm-tests-browser-headless.py b/.github/workflows/scripts/run-wasm-tests-browser-headless.py index 86af05779fc..50746fec424 100644 --- a/.github/workflows/scripts/run-wasm-tests-browser-headless.py +++ b/.github/workflows/scripts/run-wasm-tests-browser-headless.py @@ -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 5 minutes + wait = WebDriverWait(driver, 300) # Wait until the div with id "tests_finished" is displayed tests_finished_element = wait.until(EC.presence_of_element_located((By.ID, "tests_finished")))