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 c73129a commit f98bcc5Copy full SHA for f98bcc5
packages/playwright-core/src/server/page.ts
@@ -485,6 +485,8 @@ export class Page extends SdkObject {
485
}
486
487
private async _performWaitForNavigationCheck(progress: Progress) {
488
+ if (process.env.PLAYWRIGHT_SKIP_NAVIGATION_CHECK)
489
+ return;
490
const mainFrame = this.frameManager.mainFrame();
491
if (!mainFrame || !mainFrame.pendingDocument())
492
return;
0 commit comments