From d237ad76c1dde5e0528d17f7849ab88b7d7f57c2 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Thu, 3 Feb 2022 09:09:38 -0800 Subject: [PATCH] test: mark cltr+click test as timing out on windows (#11840) --- tests/browsercontext-page-event.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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', () => {});