Skip to content

Commit 53376f2

Browse files
Change page load wait condition to 'domcontentloaded'
1 parent f308c06 commit 53376f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/find/src/findForUrl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export async function findForUrl(url: string, authContext?: AuthContext): Promis
99
const context = await browser.newContext(contextOptions);
1010
const page = await context.newPage();
1111
await page.goto(url, {
12-
waitUntil: 'networkidle',
12+
waitUntil: 'domcontentloaded',
1313
// - looks like default timeout is 3000ms
1414
// - increasing for testing
1515
timeout: 60000,

0 commit comments

Comments
 (0)