Steps to reproduce
What steps will reproduce the problem?
const puppeteer = require('puppeteer');
(async() => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
page.on('console', (...args) => {
for (let i = 0; i < args.length; ++i)
console.log(`${i}: ${args[i]}`);
});
page.on('error', err => {
console.log(err)
})
await page.goto('https://www.883jia.com.sg/');
console.log(page.url());
browser.close();
})()
What is the expected result?
Successful logging of page.url() then closure of the instance.
What happens instead?
0: JQMIGRATE: Migrate is installed, version 1.4.1
Error: Navigation Timeout Exceeded: 30000ms exceeded
Not really sure what happened, pretty new to this and all, do let me know what other information is needed. Would suspect that it is due to the JQMIGRATE message from the website though.
Steps to reproduce
What steps will reproduce the problem?
What is the expected result?
Successful logging of page.url() then closure of the instance.
What happens instead?
Not really sure what happened, pretty new to this and all, do let me know what other information is needed. Would suspect that it is due to the JQMIGRATE message from the website though.