Summary
Some Playwright E2E tests use keyboard shortcuts such as Control+A.
These work on Windows and Linux but fail when running the test suite locally on macOS, where the equivalent shortcut is Command+A.
Using ControlOrMeta makes the tests portable across all supported development environments.
Current
await page.keyboard.press('Control+A');
Proposed
await page.keyboard.press('ControlOrMeta+A');
Acceptance Criteria
- All text-editing shortcuts use
ControlOrMeta where appropriate.
- E2E tests pass on macOS, Linux, and Windows.
Summary
Some Playwright E2E tests use keyboard shortcuts such as
Control+A.These work on Windows and Linux but fail when running the test suite locally on macOS, where the equivalent shortcut is
Command+A.Using
ControlOrMetamakes the tests portable across all supported development environments.Current
Proposed
Acceptance Criteria
ControlOrMetawhere appropriate.