We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3485ffb commit 93c9083Copy full SHA for 93c9083
test/keyboard.spec.js
@@ -78,7 +78,7 @@ describe('Keyboard', function() {
78
await page.keyboard.insertText('hello world');
79
expect(await page.evaluate('window.events')).toEqual(['input']);
80
});
81
- it.fail(FFOX)('should report shiftKey', async({page, server}) => {
+ it.fail(FFOX && MAC)('should report shiftKey', async({page, server}) => {
82
await page.goto(server.PREFIX + '/input/keyboard.html');
83
const keyboard = page.keyboard;
84
const codeForKey = {'Shift': 16, 'Alt': 18, 'Control': 17};
0 commit comments