diff --git a/tests/browsercontext-page-event.spec.ts b/tests/browsercontext-page-event.spec.ts index 5ace095958..6b96038171 100644 --- a/tests/browsercontext-page-event.spec.ts +++ b/tests/browsercontext-page-event.spec.ts @@ -185,9 +185,10 @@ it('should work with Ctrl-clicking', async ({ browser, server, isMac, browserNam await context.close(); }); -it('should not hang on ctrl-click during provisional load', async ({ context, page, server, isMac, browserName }) => { +it('should not hang on ctrl-click during provisional load', async ({ context, page, server, isMac, isWindows, browserName }) => { it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/11595' }); it.skip(browserName === 'chromium', 'Chromium does not dispatch renderer messages while navigation is provisional.'); + it.fixme(browserName === 'webkit' && isWindows, 'Timesout while trying to click'); await page.goto(server.EMPTY_PAGE); await page.setContent('yo'); server.setRoute('/slow.html', () => {});