Skip to content

Commit

Permalink
test: fix webview2 & msedge tests (#18823)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Nov 15, 2022
1 parent 98513c3 commit 4b352ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/page/page-click-scroll.spec.ts
Expand Up @@ -81,7 +81,7 @@ it('should scroll into view display:contents with position', async ({ page, brow

it('should not crash when force-clicking hidden input', async ({ page, browserName, channel, browserMajorVersion }) => {
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/18183' });
it.skip(browserName === 'chromium' && !!channel && browserMajorVersion < 109);
it.skip(browserName === 'chromium' && browserMajorVersion < 109 || channel.startsWith('msedge') && browserMajorVersion < 110);

await page.setContent(`<input type=hidden>`);
const error = await page.locator('input').click({ force: true, timeout: 2000 }).catch(e => e);
Expand Down

0 comments on commit 4b352ac

Please sign in to comment.