From 6814e6bb55017c566d31a3b80cd7998a07831d9d Mon Sep 17 00:00:00 2001 From: Damien Lachaume <135982616+dlachaume@users.noreply.github.com> Date: Mon, 29 Jul 2024 10:59:35 +0200 Subject: [PATCH] test: increase timeout for client WASM headless browser tests --- .github/workflows/scripts/run-wasm-tests-browser-headless.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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")))