Context:
- Playwright Version: 1.1.1
- Operating System: Windows 10 build 1809 (running on Virtualbox)
- Node version: 12.8
- Browser: Firefox
Code Snippet
const {firefox} = require('playwright');
(async () => {
const browser = await firefox.launch({ headless: false });
const page = await browser.newPage();
await page.goto('https://example.com');
await browser.close();
})();
Describe the bug
Firefox does not launch, in headless/headful modes.
