You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BUG - Use Playwright expect() for code block tab stop tests (#2160)
Maybe fixes#2158.
This takes advantage of Playwright's ability to wait for a condition to
be true rather than hard-coding manual wait times with the
`page.wait_for_timeout()` function.
From the Playwright docs:
> Playwright includes assertions that will wait until the expected
condition is met. Using these assertions allows making the tests
non-flaky and resilient.
> -[Writing Tests:
Assertions](https://playwright.dev/python/docs/writing-tests#assertions)
0 commit comments