We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d84c22d commit 8e4a4e2Copy full SHA for 8e4a4e2
1 file changed
tests/e2e/page_objects/base.py
@@ -12,4 +12,6 @@ def __init__(self, page, live_server):
12
13
def navigate(self):
14
"""Navigate to this page's URL."""
15
+ if self.page.url != "about:blank":
16
+ self.page.wait_for_load_state("networkidle")
17
self.page.goto(f"{self.live_server.url}{self.url}")
0 commit comments