Context:
- Playwright Version: 0.11.0
- Operating System: Mac
- Extra: Works on 0.10.0
Code Snippet
const playwright = require("playwright");
(async () => {
for (let browserType of ["chromium", "firefox"]) {
const browser = await playwright[browserType].launch({ headless: false });
const page = await browser.newPage();
await page.goto("https://google.com");
await page.type('css=[aria-label="Search"]', "Hello");
await page.keyboard.press("Enter");
}
})();
Describe the bug
Enter does not work on Firefox but does on Chromium. Issue is for press and up/down.