Skip to content

Commit

Permalink
fix(test): enable presssing in frames test (#1326)
Browse files Browse the repository at this point in the history
Fixes #1265
  • Loading branch information
JoelEinbinder authored Mar 10, 2020
1 parent 0cff9df commit 0d2ae91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/page.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1098,7 +1098,7 @@ module.exports.describe = function({testRunner, expect, headless, playwright, FF
await page.press('textarea', 'a');
expect(await page.evaluate(() => document.querySelector('textarea').value)).toBe('a');
});
it.fail(WEBKIT)('Frame.press should work', async({page, server}) => {
it('Frame.press should work', async({page, server}) => {
await page.setContent(`<iframe name=inner src="${server.PREFIX}/input/textarea.html"></iframe>`);
const frame = page.frame('inner');
await frame.press('textarea', 'a');
Expand Down

0 comments on commit 0d2ae91

Please sign in to comment.