Die Navigationszeitüberschreitung von 30000 ms überschritten überschritten
await page.setDefaultNavigationTimeout(0);
Derogatory Desert Turtoise
await page.setDefaultNavigationTimeout(0);
Puppeteer, is chromium based by default.
If you wish to use chrome instead you have to specify the executable path through the executablePath launch parameter.
But to be honest, most of the time, there is no point to do so.
let browser = await puppeteer.launch({
executablePath: `/path/to/Chrome`,
//...
});
await page.goto(`https://github.com/`, {timeout: 0});