From 700a925565c1f3cf89b6d2e05e00fe7a472265cb Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Tue, 11 Jul 2023 14:20:05 -0700 Subject: [PATCH] test: simplify emulate media + connectOverCDP test (#24166) --- tests/library/chromium/connect-over-cdp.spec.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tests/library/chromium/connect-over-cdp.spec.ts b/tests/library/chromium/connect-over-cdp.spec.ts index 0ba8ac673c..1429ffc5b0 100644 --- a/tests/library/chromium/connect-over-cdp.spec.ts +++ b/tests/library/chromium/connect-over-cdp.spec.ts @@ -419,7 +419,7 @@ test('should be able to connect via localhost', async ({ browserType }, testInfo } }); -test('emulate media should be isolated between different contexts in different connections', async ({ browserType }, testInfo) => { +test('emulate media should not be affected by second connectOverCDP', async ({ browserType }, testInfo) => { test.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/24109' }); test.fixme(); const port = 9339 + testInfo.workerIndex; @@ -436,13 +436,7 @@ test('emulate media should be isolated between different contexts in different c const page1 = await context1.newPage(); await page1.emulateMedia({ media: 'print' }); expect(await isPrint(page1)).toBe(true); - const browser2 = await browserType.connectOverCDP(`http://localhost:${port}`); - const context2 = await browser2.newContext(); - const page2 = await context2.newPage(); - await page2.emulateMedia({ media: 'print' }); - expect(await isPrint(page2)).toBe(true); - // page1 should not be affected. expect(await isPrint(page1)).toBe(true); await Promise.all([ browser1.close(),