Add retry logic when launching browser in NPM driver

main
Elbert Alias 1 year ago
parent d16838e440
commit 9dfa1084f2

@ -369,7 +369,8 @@ class Driver {
}
async init() {
this.log('Launching browser...')
for (let attempt = 1; attempt <= 3; attempt++) {
this.log(`Launching browser (attempt ${attempt})...`)
try {
if (CHROMIUM_WEBSOCKET) {
@ -384,9 +385,20 @@ class Driver {
acceptInsecureCerts: true,
args: chromiumArgs,
executablePath: CHROMIUM_BIN,
timeout: 5000,
})
}
break
} catch (error) {
this.log(error)
if (attempt >= 3) {
throw new Error(error.message || error.toString())
}
}
}
this.browser.on('disconnected', async () => {
this.log('Browser disconnected')
@ -398,11 +410,6 @@ class Driver {
}
}
})
} catch (error) {
this.log(error)
throw new Error(error.message || error.toString())
}
}
async destroy() {
@ -537,7 +544,7 @@ class Site {
promise,
fallback,
errorMessage = 'Operation took too long to complete',
maxWait = Math.min(this.options.maxWait, 1000)
maxWait = Math.min(this.options.maxWait, 3000)
) {
let timeout = null
@ -1260,7 +1267,7 @@ class Site {
const body = await get(new URL(path, url.href), {
userAgent: this.options.userAgent,
timeout: Math.min(this.options.maxWait, 1000),
timeout: Math.min(this.options.maxWait, 3000),
})
this.log(`Probe ok (${path})`)

Loading…
Cancel
Save