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
Context:
GOOD Playwright Version: 1.30.0 with firefox
BAD Playwright Version: 1.31.1 with firefox, 1.31.2 with firefox
Operating System: MacOS
Code Snippet
test("reload times out on firefox",async({ page })=>{awaitpage.goto("https://playwright.dev/docs/api/class-locator#");awaitpage.reload();});
I get
Test timeout of 60000ms exceeded.
page.reload: Navigation failed because page was closed!
=========================== logs ===========================
waiting for navigation until "load"
============================================================
10 | }) => {
11 | await page.goto('https://playwright.dev/docs/api/class-locator#');
> 12 | await page.reload();
| ^
13 | });
14 |
Describe the bug
If there is a hash in the URL at the end then await page.reload() times out with Test timeout of 30000ms exceeded.. I expected the test to pass after a page reload. Slightly different from this issue 21145
The text was updated successfully, but these errors were encountered:
Context:
GOOD Playwright Version: 1.30.0 with firefox
BAD Playwright Version: 1.31.1 with firefox, 1.31.2 with firefox
Operating System: MacOS
Code Snippet
I get
Describe the bug
If there is a hash in the URL at the end then await page.reload() times out with Test timeout of 30000ms exceeded.. I expected the test to pass after a page reload. Slightly different from this issue 21145
The text was updated successfully, but these errors were encountered: