diff --git a/package.json b/package.json index 27ced68cbc..fe2e149794 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "main": "index.js", "playwright": { "chromium_revision": "751710", - "firefox_revision": "1058", + "firefox_revision": "1059", "webkit_revision": "1182" }, "scripts": { diff --git a/test/evaluation.spec.js b/test/evaluation.spec.js index fecd6842f4..ae1d35b585 100644 --- a/test/evaluation.spec.js +++ b/test/evaluation.spec.js @@ -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');