test(webkit): enable click test that was fixed by moving input agent (#424)
This commit is contained in:
parent
25dfd61d16
commit
86fc2699aa
|
|
@ -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');
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue