From 95da43ea0f6c02444c18a48d7f46eb36ba3a3e33 Mon Sep 17 00:00:00 2001 From: Chris Coutinho Date: Sat, 18 Oct 2025 23:26:50 +0200 Subject: [PATCH] ci: Increase playwright timeout to 60s --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 26c69a4..add70d7 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -756,7 +756,7 @@ async def playwright_oauth_token( try: # Navigate to authorization URL logger.debug(f"Navigating to: {auth_url}") - await page.goto(auth_url, wait_until="networkidle", timeout=30000) + await page.goto(auth_url, wait_until="networkidle", timeout=60000) # Check if we need to login first current_url = page.url @@ -779,7 +779,7 @@ async def playwright_oauth_token( await page.click('button[type="submit"]') # Wait for navigation after login - await page.wait_for_load_state("networkidle", timeout=30000) + await page.wait_for_load_state("networkidle", timeout=60000) current_url = page.url logger.info(f"After login, current URL: {current_url}")