Skip to content

[BUG] Crash when opening a new tab from UI #4472

Closed

Description

Context:

  • Playwright Version: 1.6.2
  • Operating System: Mac 11.0.1 Big Sur, Ubuntu Bionic
  • Node.js version: 12.18.3
  • Browser: Chromium

Code Snippet

const playwright = require("playwright");

(async () => {
  const browser = await playwright.chromium.launch({ headless: false });

  const context = await browser.newContext();
  const page = await context.newPage();
  await page.goto("https://google.com/");

  // open a new tab from the UI in chrome, process immediately exits
})();

Describe the bug

Opening a tab in headed mode closes the process, no error thrown.

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

Metadata

Assignees

Labels

browser-chromiumupstreamThis is a bug in something playwright depends on, like a browser.

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions