Yury Semikhatsky 2023-09-18 09:57:18 -07:00 committed by GitHub
parent 955be6bd61
commit 8964587d18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View File

@ -695,6 +695,7 @@ it.describe('screencast', () => {
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/22411' });
it.fixme(browserName === 'chromium' && (!headless || !!process.env.PLAYWRIGHT_CHROMIUM_USE_HEADLESS_NEW), 'The square is not on the video');
it.fixme(browserName === 'firefox' && isWindows, 'https://github.com/microsoft/playwright/issues/14405');
it.fixme(browserName === 'webkit' && !headless, 'https://github.com/microsoft/playwright-browsers/issues/637');
const size = { width: 600, height: 400 };
const browser = await browserType.launch();

View File

@ -86,7 +86,6 @@ it('should work after a cross origin navigation', async ({ page, server }) => {
it('init script should run only once in iframe', async ({ page, server, browserName }) => {
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/26992' });
it.fixme(browserName === 'webkit');
const messages = [];
page.on('console', event => {
if (event.text().startsWith('init script:'))