mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
test: disable shortcuts test on Firefox darwin (#5869)
References #5721
This commit is contained in:
parent
de16d17726
commit
9bd35d8271
@ -342,8 +342,10 @@ it('should be able to prevent selectAll', async ({page, server, isMac}) => {
|
||||
expect(await page.$eval('textarea', textarea => textarea.value)).toBe('some tex');
|
||||
});
|
||||
|
||||
it('should support MacOS shortcuts', (test, { platform }) => {
|
||||
it('should support MacOS shortcuts', (test, { platform, browserName }) => {
|
||||
test.skip(platform !== 'darwin');
|
||||
// @see https://github.com/microsoft/playwright/issues/5721
|
||||
test.fixme(browserName === 'firefox' && platform === 'darwin');
|
||||
}, async ({page, server}) => {
|
||||
await page.goto(server.PREFIX + '/input/textarea.html');
|
||||
const textarea = await page.$('textarea');
|
||||
|
Loading…
x
Reference in New Issue
Block a user