Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: Navigating to about:blank fails non-headless (regression in 14.0.0) #8334

Closed
pasieronen opened this issue May 11, 2022 · 3 comments
Closed
Assignees
Labels

Comments

@pasieronen
Copy link

Bug description

Navigating to about:blank when not headless works fine with puppeteer@13.7.0, but fails with 30s timeout on 14.0.0:

const puppeteer = require('puppeteer');
(async () => {
  const browser = await puppeteer.launch({headless: false});
  const page = await browser.newPage();
  await page.goto('about:blank');
  console.log('ok');
  await browser.close();
})();

Headless mode works also on 14.0.0.

Puppeteer version

14.0.0

Node.js version

16.15.0

npm version

8.5.5

What operating system are you seeing the problem on?

macOS

Relevant log output

No response

@pasieronen pasieronen added the bug label May 11, 2022
@OrKoN
Copy link
Collaborator

OrKoN commented May 12, 2022

Hey, thanks for the report! Unfortunately, it's a bug upstream (Chromium M102) and we added a workaround for it yesterday #8330 (to be released soon). The upstream issue is also fixed and it will be back-merged into the m102 branch (crbug.com/1324138) and then hopefully we are able to re-roll the Chromium binary and remove the workaroound.

@OrKoN OrKoN self-assigned this May 12, 2022
@OrKoN
Copy link
Collaborator

OrKoN commented May 13, 2022

The workaround is released in 14.1.0.

@pasieronen
Copy link
Author

Thanks, this seems to work in 14.1.0 and 15.3.1 (latest), closing issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants