fix(firefox): make ElementHandle.scrollIntoViewIfNeeded pass (#1786)
This commit is contained in:
parent
da683b2752
commit
b232e004f5
|
|
@ -9,7 +9,7 @@
|
|||
"main": "index.js",
|
||||
"playwright": {
|
||||
"chromium_revision": "754895",
|
||||
"firefox_revision": "1077",
|
||||
"firefox_revision": "1078",
|
||||
"webkit_revision": "1193"
|
||||
},
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -293,7 +293,7 @@ describe('ElementHandle.hover', function() {
|
|||
});
|
||||
|
||||
describe('ElementHandle.scrollIntoViewIfNeeded', function() {
|
||||
it.fail(FFOX)('should work', async({page, server}) => {
|
||||
it('should work', async({page, server}) => {
|
||||
await page.goto(server.PREFIX + '/offscreenbuttons.html');
|
||||
for (let i = 0; i < 11; ++i) {
|
||||
const button = await page.$('#btn' + i);
|
||||
|
|
|
|||
Loading…
Reference in a new issue