From 1088d43889fbfad05daa1d86f78f5a0410010041 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 13 Aug 2024 22:11:57 +0200 Subject: [PATCH] Update page-goto.spec.ts Signed-off-by: Max Schmitt --- tests/page/page-goto.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/page/page-goto.spec.ts b/tests/page/page-goto.spec.ts index a613a7e036..79107c0d21 100644 --- a/tests/page/page-goto.spec.ts +++ b/tests/page/page-goto.spec.ts @@ -181,7 +181,8 @@ it('should work with Cross-Origin-Opener-Policy after redirect', async ({ page, it('should properly cancel Cross-Origin-Opener-Policy navigation', { annotation: { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/32107' }, -}, async ({ page, server }) => { +}, async ({ page, server, browserName, isLinux }) => { + it.fixme(browserName === 'webkit' && isLinux, 'Started failing after https://commits.webkit.org/281488@main'); server.setRoute('/empty.html', (req, res) => { res.setHeader('Cross-Origin-Opener-Policy', 'same-origin'); res.end();