mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00: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",
|
"main": "index.js",
|
||||||
"playwright": {
|
"playwright": {
|
||||||
"chromium_revision": "751710",
|
"chromium_revision": "751710",
|
||||||
"firefox_revision": "1058",
|
"firefox_revision": "1059",
|
||||||
"webkit_revision": "1182"
|
"webkit_revision": "1182"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"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);
|
await page.evaluate(e => e.textContent, element).catch(e => error = e);
|
||||||
expect(error.message).toContain('JSHandle is disposed');
|
expect(error.message).toContain('JSHandle is disposed');
|
||||||
});
|
});
|
||||||
it.fail(FFOX)('should simulate a user gesture', async({page, server}) => {
|
it('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
|
|
||||||
const result = await page.evaluate(() => {
|
const result = await page.evaluate(() => {
|
||||||
document.body.appendChild(document.createTextNode('test'));
|
document.body.appendChild(document.createTextNode('test'));
|
||||||
document.execCommand('selectAll');
|
document.execCommand('selectAll');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user