Andrey Lushnikov 2023-05-18 01:57:35 +00:00 committed by GitHub
parent 6963483c47
commit e6bc32b022
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 2 deletions

View File

@ -368,6 +368,7 @@ test.describe('cli codegen', () => {
});
test('should not clash pages', async ({ page, openRecorder, browserName }) => {
test.fixme(browserName === 'firefox', 'https://github.com/microsoft/playwright/issues/23117');
const recorder = await openRecorder();
const [popup1] = await Promise.all([
page.context().waitForEvent('page'),

View File

@ -577,7 +577,8 @@ test('should show action source', async ({ showTraceViewer }) => {
await expect(page.getByTestId('stack-trace').locator('.list-view-entry.selected')).toHaveText(/doClick.*trace-viewer\.spec\.ts:[\d]+/);
});
test('should follow redirects', async ({ page, runAndTrace, server, asset }) => {
test('should follow redirects', async ({ page, runAndTrace, server, asset, browserName }) => {
test.fixme(browserName === 'chromium', 'https://github.com/microsoft/playwright/issues/23115');
server.setRoute('/empty.html', (req, res) => {
res.writeHead(200, { 'Content-Type': 'text/html' });
res.end(`<div><img id=img src="image.png"></img></div>`);

View File

@ -674,10 +674,11 @@ it.describe('screencast', () => {
expect(files.length).toBe(1);
});
it('should capture full viewport', async ({ browserType, browserName, headless, isWindows }, testInfo) => {
it('should capture full viewport', async ({ browserType, browserName, headless, isWindows, isLinux }, testInfo) => {
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/22411' });
it.fixme(browserName === 'chromium' && !headless, 'The square is not on the video');
it.fixme(browserName === 'firefox' && isWindows, 'https://github.com/microsoft/playwright/issues/14405');
it.fixme(browserName === 'firefox' && !headless && isLinux, 'https://github.com/microsoft/playwright/issues/23118');
const size = { width: 600, height: 400 };
const browser = await browserType.launch();

View File

@ -52,6 +52,7 @@ test('should use baseURL in request fixture', async ({ runInlineTest, server })
});
test('should stop tracing on requestContext.dispose()', async ({ runInlineTest, server }) => {
test.fixme(process.platform === 'darwin', 'https://github.com/microsoft/playwright/issues/23116');
server.setRoute('/slow', (req, resp) => {
resp.writeHead(200, {
'Content-Type': 'text/plain; charset=utf-8',

View File

@ -19,6 +19,7 @@ import { test, expect } from './ui-mode-fixtures';
test.describe.configure({ mode: 'parallel' });
test('should merge trace events', async ({ runUITest, server }) => {
test.fixme(true, 'https://github.com/microsoft/playwright/issues/23114');
const { page } = await runUITest({
'a.test.ts': `
import { test, expect } from '@playwright/test';
@ -50,6 +51,7 @@ test('should merge trace events', async ({ runUITest, server }) => {
});
test('should merge web assertion events', async ({ runUITest }, testInfo) => {
test.fixme(process.platform === 'darwin' || process.platform === 'win32', 'https://github.com/microsoft/playwright/issues/23114');
const { page } = await runUITest({
'a.test.ts': `
import { test, expect } from '@playwright/test';
@ -122,6 +124,7 @@ test('should locate sync assertions in source', async ({ runUITest, server }) =>
});
test('should show snapshots for sync assertions', async ({ runUITest, server }) => {
test.fixme(true, 'https://github.com/microsoft/playwright/issues/23114');
const { page } = await runUITest({
'a.test.ts': `
import { test, expect } from '@playwright/test';