test: selectively disable selenium tests (#21741)

https://github.com/microsoft/playwright/issues/21733
This commit is contained in:
Andrey Lushnikov 2023-03-18 00:48:45 +00:00 committed by GitHub
parent 50dd04ae61
commit 36a1055524
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -18,7 +18,6 @@ import path from 'path';
import { test } from './npmTest';
test('connect to selenium', async ({ exec, tmpWorkspace }, testInfo) => {
test.fixme(true, 'https://github.com/microsoft/playwright/issues/21733');
test.skip(os.platform() !== 'linux');
await exec('npm i --foreground-scripts playwright-core');

View file

@ -94,6 +94,7 @@ test('selenium grid 3.141.59 hub + node chromium', async ({ browserName, childPr
});
test('selenium grid 4.4.0 standalone chromium', async ({ browserName, childProcess, waitForPort, browserType }, testInfo) => {
test.fixme(true, 'https://github.com/microsoft/playwright/issues/21733');
test.skip(browserName !== 'chromium');
const port = testInfo.workerIndex + 15123;
@ -117,6 +118,7 @@ test('selenium grid 4.4.0 standalone chromium', async ({ browserName, childProce
});
test('selenium grid 4.4.0 hub + node chromium', async ({ browserName, childProcess, waitForPort, browserType }, testInfo) => {
test.fixme(true, 'https://github.com/microsoft/playwright/issues/21733');
test.skip(browserName !== 'chromium');
const port = testInfo.workerIndex + 15123;