test(webkit): enable click test that was fixed by moving input agent

This commit is contained in:
Yury Semikhatsky 2020-01-08 10:48:52 -08:00
parent 25dfd61d16
commit 29fb404d1c

View file

@ -71,7 +71,7 @@ module.exports.describe = function({testRunner, expect, playwright, FFOX, CHROME
await page.click('button'); await page.click('button');
expect(await page.evaluate(() => result)).toBe('Clicked'); expect(await page.evaluate(() => result)).toBe('Clicked');
}); });
it.skip(WEBKIT)('should click the button after a cross origin navigation ', async({page, server}) => { it('should click the button after a cross origin navigation ', async({page, server}) => {
await page.goto(server.PREFIX + '/input/button.html'); await page.goto(server.PREFIX + '/input/button.html');
await page.click('button'); await page.click('button');
await page.goto(server.CROSS_PROCESS_PREFIX + '/input/button.html'); await page.goto(server.CROSS_PROCESS_PREFIX + '/input/button.html');