Andrey Lushnikov 2023-05-18 00:54:34 +00:00 committed by GitHub
parent 7b1b2dd741
commit 7ff82760de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -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({

View File

@ -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<void>(f => {
let counter = 0;