Known errors
Error TimeoutError: Navigation timeout of 30000 ms exceeded
TimeoutError: Navigation timeout of 30000 ms exceededResolving the Error
await page.goto('https://example.com', { timeout: 60000 });const page = await browser.newPage();
page.setDefaultNavigationTimeout(60000);
await page.goto('https://example.com');Last updated