mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 14:11:50 +03:00
tests(firefox): unskip "should report shiftKey" on Linux&Win (#1833)
This commit is contained in:
parent
3485ffb4e6
commit
93c9083629
@ -78,7 +78,7 @@ describe('Keyboard', function() {
|
||||
await page.keyboard.insertText('hello world');
|
||||
expect(await page.evaluate('window.events')).toEqual(['input']);
|
||||
});
|
||||
it.fail(FFOX)('should report shiftKey', async({page, server}) => {
|
||||
it.fail(FFOX && MAC)('should report shiftKey', async({page, server}) => {
|
||||
await page.goto(server.PREFIX + '/input/keyboard.html');
|
||||
const keyboard = page.keyboard;
|
||||
const codeForKey = {'Shift': 16, 'Alt': 18, 'Control': 17};
|
||||
|
Loading…
Reference in New Issue
Block a user