Skip to content

[REGRESSION] Firefox keyboard doesn't type any more #1009

@jperl

Description

@jperl

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions