When using puppeteer-cluster, I've discovered that errors thrown within the Worker class, specifically the throw new Error('Unable to get browser page') error, are not being caught. This appears to be due to a lack of proper error handling in the worker.handle method.
When using puppeteer-cluster, I've discovered that errors thrown within the Worker class, specifically the
throw new Error('Unable to get browser page')
error, are not being caught. This appears to be due to a lack of proper error handling in theworker.handle
method.