We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
javaScriptEnabled: false
1 parent 4e9f34b commit ca06f33Copy full SHA for ca06f33
src/core/browser.ts
@@ -58,7 +58,7 @@ export async function createPage(path?: string, options?: BrowserContextOptions)
58
}
59
60
if (path) {
61
- await page.goto(url(path), { waitUntil: 'hydration' })
+ await page.goto(url(path), options?.javaScriptEnabled === false ? {} : { waitUntil: 'hydration' })
62
63
64
return page
0 commit comments