Playwright: [BUG] Twitter timeout error on firefox

Created on 30 Oct 2020  路  4Comments  路  Source: microsoft/playwright

Hi,

When i trying to navigate to Twitter in Firefox, I'm getting timeout exceeded errors.Its working the other browsers.

https://try.playwright.tech/?s=q5t4t4p

P2-bug v1.7

Most helpful comment

For the record: This happens due to cross-process navigation. I'm working on a fix!

All 4 comments

I can repro

When I trying to navigate to Twitter in Firefox, I'm getting timeout exceeded errors. Its working the other browsers.

I've experienced similar problems. As a temporary fix instead of using

await page.goto('https://www.twitter.com', {waitUntil: "load"}); 

I instead use

await this.page.evaluate(() => window.location.href = 'https://www.twitter.com');
await this.page.waitForFunction(() => document.readyState == 'complete');

For the record: This happens due to cross-process navigation. I'm working on a fix!

Is this bug will be fixed in v1.7? @pavelfeldman

Was this page helpful?
0 / 5 - 0 ratings