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 2f345c7 commit b1c15e4Copy full SHA for b1c15e4
test/keyboard.spec.js
@@ -377,4 +377,12 @@ describe('Keyboard', function() {
377
expect(await page.evaluate('lastKeyIdentifier')).toBe(keyIdentifier);
378
}
379
});
380
+ it.fail(WEBKIT && MAC)('should scroll with PageDown', async({page, server}) => {
381
+ await page.goto(server.PREFIX + '/input/scrollable.html');
382
+ // A click is required for WebKit to send the event into the body.
383
+ await page.click('body');
384
+ await page.keyboard.press('PageDown');
385
+ // We can't wait for the scroll to finish, so just wait for it to start.
386
+ await page.waitForFunction(() => scrollY > 0);
387
+ });
388
0 commit comments