We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2ca539 commit 311abc0Copy full SHA for 311abc0
src/browser/browser.ts
@@ -175,7 +175,7 @@ export class Browser {
175
this.log.debug('Navigating and waiting for all network requests to finish', 'url', options.url);
176
}
177
178
- await page.goto(options.url, { waitUntil: 'networkidle0' });
+ await page.goto(options.url, { waitUntil: 'networkidle0', timeout: options.timeout * 1000 });
179
180
if (this.config.verboseLogging) {
181
this.log.debug('Waiting for dashboard/panel to load', 'timeout', `${options.timeout}s`);
0 commit comments