Hi,
When i trying to navigate to Twitter in Firefox, I'm getting timeout exceeded errors.Its working the other browsers.
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
Most helpful comment
For the record: This happens due to cross-process navigation. I'm working on a fix!