(node:2591) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): TimeoutError: Navigation Timeout Exceeded: 30000ms exceeded
(node:2591) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
When I change puppeteer headless to true,
const browser = await puppeteer.launch({
headless: true // Turn this to false to debug
});
the page was stuck after login and display my prime list on the browser.
How can I solve this?
When I change puppeteer headless to true,
the page was stuck after login and display my prime list on the browser. How can I solve this?