diff --git a/tests/library/browsertype-launch-selenium.spec.ts b/tests/library/browsertype-launch-selenium.spec.ts index d46ca0c5f8..0534380a66 100644 --- a/tests/library/browsertype-launch-selenium.spec.ts +++ b/tests/library/browsertype-launch-selenium.spec.ts @@ -180,6 +180,7 @@ test('selenium grid 3.141.59 standalone non-chromium', async ({ browserName, bro test('selenium grid 3.141.59 standalone chromium through run-driver', async ({ browserName, childProcess, waitForPort }, testInfo) => { test.skip(browserName !== 'chromium'); + test.fixme(true, 'https://github.com/microsoft/playwright/issues/23110'); const port = testInfo.workerIndex + 15123; const grid = childProcess({ diff --git a/tests/library/tracing.spec.ts b/tests/library/tracing.spec.ts index 7c68098553..0068de5f43 100644 --- a/tests/library/tracing.spec.ts +++ b/tests/library/tracing.spec.ts @@ -577,7 +577,8 @@ test('should record global request trace', async ({ request, context, server }, })); }); -test('should store global request traces separately', async ({ request, server, playwright }, testInfo) => { +test('should store global request traces separately', async ({ request, server, playwright, browserName, mode }, testInfo) => { + test.fixme(browserName === 'chromium' && mode === 'driver', 'https://github.com/microsoft/playwright/issues/23108'); const request2 = await playwright.request.newContext(); await Promise.all([ (request as any)._tracing.start({ snapshots: true }), @@ -636,6 +637,7 @@ test('should store postData for global request', async ({ request, server }, tes }); test('should not flush console events', async ({ context, page }, testInfo) => { + test.fixme(true, 'https://github.com/microsoft/playwright/issues/23107'); await context.tracing.start(); const promise = new Promise(f => { let counter = 0;