We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f0fa1d commit 56b4f35Copy full SHA for 56b4f35
wordpress-official-starter/playwright-flow.py
@@ -26,9 +26,9 @@ def log_note(message: str) -> None:
26
log_note('Home Page')
27
page.goto("http://gcb-wordpress:9875", wait_until="networkidle")
28
29
- # Wait until logo is visible
30
- page.locator('p#logo').wait_for(state="visible", timeout=30)
31
+ if not page.locator('p#logo').is_visible():
+ page.locator('p#logo').wait_for(state="visible", timeout=30) # if we call this directly it can error if element is already visible. very annoying
32
33
# Example of navigating to another page:
34
# page.goto("http://gcb-wordpress:9875/my-sample-page", wait_until="networkidle")
0 commit comments