From 342f623961a53c2dd477392fd99200ff0ac4b000 Mon Sep 17 00:00:00 2001 From: Maximilian Schulz <83698606+maxschulz-COL@users.noreply.github.com> Date: Thu, 6 Mar 2025 11:20:20 +0100 Subject: [PATCH] [QA] Increase wait time for PyCafe load (#1056) --- tools/pycafe/test_pycafe_links.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pycafe/test_pycafe_links.py b/tools/pycafe/test_pycafe_links.py index e57b9bd23..6b444220a 100644 --- a/tools/pycafe/test_pycafe_links.py +++ b/tools/pycafe/test_pycafe_links.py @@ -24,7 +24,7 @@ def test_pycafe_link(url: str, wait_for_text: str): # Get the app frame and wait for title frame = page.frame_locator("#app") - frame.get_by_text(wait_for_text).wait_for() + frame.get_by_text(wait_for_text).wait_for(timeout=90000) print(f"✅ Successfully verified PyCafe link: {url}") # noqa return True