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 039ad23 commit 0e0d30eCopy full SHA for 0e0d30e
src/services/browser/BrowserSession.ts
@@ -422,7 +422,7 @@ export class BrowserSession {
422
423
// page.goto { waitUntil: "networkidle0" } may not ever resolve, and not waiting could return page content too early before js has loaded
424
// https://stackoverflow.com/questions/52497252/puppeteer-wait-until-page-is-completely-loaded/61304202#61304202
425
- private async waitTillHTMLStable(page: Page, timeout = 5_000) {
+ private async waitTillHTMLStable(page: Page, timeout = 8_000) {
426
const checkDurationMsecs = 500 // 1000
427
const maxChecks = timeout / checkDurationMsecs
428
let lastHTMLSize = 0
0 commit comments