You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We get an UnhandledPromiseRejectionWarning if the browser crashes while scraping a page.
This can be induced by attempting to crawl the page chrome://kill, but it can also happen in real-world scenarios, such as the machine not having enough memory.
It is currently not possible to programmatically handle such errors, be it by using Promise.catch or try/catch.
The text was updated successfully, but these errors were encountered:
We get an
UnhandledPromiseRejectionWarning
if the browser crashes while scraping a page.This can be induced by attempting to crawl the page
chrome://kill
, but it can also happen in real-world scenarios, such as the machine not having enough memory.It is currently not possible to programmatically handle such errors, be it by using
Promise.catch
ortry/catch
.The text was updated successfully, but these errors were encountered: