test: mark cltr+click test as timing out on windows (#11840)

This commit is contained in:
Yury Semikhatsky 2022-02-03 09:09:38 -08:00 committed by GitHub
parent f96b1dd43b
commit d237ad76c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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('<a href="/one-style.html">yo</a>');
server.setRoute('/slow.html', () => {});