Closed
Description
openedon Nov 18, 2020
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