Skip to content

Commit ca06f33

Browse files
committedDec 4, 2024··
fix(e2e): handle javaScriptEnabled: false
resolves #868
1 parent 4e9f34b commit ca06f33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/browser.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export async function createPage(path?: string, options?: BrowserContextOptions)
5858
}
5959

6060
if (path) {
61-
await page.goto(url(path), { waitUntil: 'hydration' })
61+
await page.goto(url(path), options?.javaScriptEnabled === false ? {} : { waitUntil: 'hydration' })
6262
}
6363

6464
return page

0 commit comments

Comments
 (0)
Please sign in to comment.