Closed
Description
Steps to reproduce
- Puppeteer version: 0.10.2
- Platform / OS version: Ubuntu / node v8.5.0
- URLs (if applicable): https://www.883jia.com.sg, https://www.power98.com.sg/
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.
Metadata
Metadata
Assignees
Labels
No labels
Activity