Context:
- Playwright Version: 1.1.1
- Operating System: Windows 10 build 1809 (running on Virtualbox)
- Node version: 12.8
- Browser: WebKit
Code Snippet
const {webkit} = require('playwright');
(async () => {
const browser = await webkit.launch({ headless: false });
const page = await browser.newPage();
await page.goto('https://example.com');
await browser.close();
})();
Describe the bug
WebKit does not launch, in headless/headful modes. I can see the PlaywrightLibrary.dll file in the right directory though - unclear what the error message is referring to

