Skip to content

Constantly getting Navigation Timeout Error #782

Closed
@dustyhorizon

Description

@dustyhorizon

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.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions