mirror of
https://github.com/microsoft/playwright.git
synced 2024-11-10 12:57:42 +03:00
feat(browser): roll Firefox to r1059 (#1551)
This fixes flaky user gesture in evaluation.
This commit is contained in:
parent
b1c156f422
commit
b24262b46f
@ -9,7 +9,7 @@
|
||||
"main": "index.js",
|
||||
"playwright": {
|
||||
"chromium_revision": "751710",
|
||||
"firefox_revision": "1058",
|
||||
"firefox_revision": "1059",
|
||||
"webkit_revision": "1182"
|
||||
},
|
||||
"scripts": {
|
||||
|
@ -233,9 +233,7 @@ module.exports.describe = function({testRunner, expect, FFOX, CHROMIUM, WEBKIT,
|
||||
await page.evaluate(e => e.textContent, element).catch(e => error = e);
|
||||
expect(error.message).toContain('JSHandle is disposed');
|
||||
});
|
||||
it.fail(FFOX)('should simulate a user gesture', async({page, server}) => {
|
||||
// flaky linux: https://github.com/microsoft/playwright/pull/1277/checks?check_run_id=496501774
|
||||
// flaky win: https://github.com/microsoft/playwright/pull/1323/checks?check_run_id=501701278
|
||||
it('should simulate a user gesture', async({page, server}) => {
|
||||
const result = await page.evaluate(() => {
|
||||
document.body.appendChild(document.createTextNode('test'));
|
||||
document.execCommand('selectAll');
|
||||
|
Loading…
Reference in New Issue
Block a user