feat(firefox-beta): roll to r1408 (#22978)

Fixes https://github.com/microsoft/playwright/issues/21760

---------

Signed-off-by: Andrey Lushnikov <aslushnikov@gmail.com>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Andrey Lushnikov <aslushnikov@gmail.com>
This commit is contained in:
Playwright Service 2023-05-12 09:27:08 -07:00 committed by GitHub
parent 3ccec7eae5
commit ba0c4951c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 6 deletions

View file

@ -27,7 +27,7 @@
}, },
{ {
"name": "firefox-beta", "name": "firefox-beta",
"revision": "1407", "revision": "1408",
"installByDefault": false, "installByDefault": false,
"browserVersion": "114.0b3" "browserVersion": "114.0b3"
}, },

View file

@ -93,7 +93,7 @@ it('should work with glob', async () => {
}); });
it('should intercept network activity from worker', async function({ page, server, isAndroid, browserName, browserMajorVersion }) { it('should intercept network activity from worker', async function({ page, server, isAndroid, browserName, browserMajorVersion }) {
it.fixme(browserName === 'firefox' && browserMajorVersion >= 112, 'https://github.com/microsoft/playwright/issues/21760'); it.skip(browserName === 'firefox' && browserMajorVersion < 114, 'https://github.com/microsoft/playwright/issues/21760');
it.skip(isAndroid); it.skip(isAndroid);
await page.goto(server.EMPTY_PAGE); await page.goto(server.EMPTY_PAGE);

View file

@ -125,8 +125,9 @@ it('should clear upon cross-process navigation', async function({ server, page }
expect(page.workers().length).toBe(0); expect(page.workers().length).toBe(0);
}); });
it('should attribute network activity for worker inside iframe to the iframe', async function({ page, server, browserName }) { it('should attribute network activity for worker inside iframe to the iframe', async function({ page, server, browserName, browserMajorVersion }) {
it.fixme(browserName === 'firefox' || browserName === 'chromium'); it.fixme(browserName === 'chromium');
it.skip(browserName === 'firefox' && browserMajorVersion < 114, 'https://github.com/microsoft/playwright/issues/21760');
await page.goto(server.PREFIX + '/empty.html'); await page.goto(server.PREFIX + '/empty.html');
const [worker, frame] = await Promise.all([ const [worker, frame] = await Promise.all([
@ -143,7 +144,7 @@ it('should attribute network activity for worker inside iframe to the iframe', a
}); });
it('should report network activity', async function({ page, server, browserName, browserMajorVersion }) { it('should report network activity', async function({ page, server, browserName, browserMajorVersion }) {
it.fixme(browserName === 'firefox' && browserMajorVersion >= 112, 'https://github.com/microsoft/playwright/issues/21760'); it.skip(browserName === 'firefox' && browserMajorVersion < 114, 'https://github.com/microsoft/playwright/issues/21760');
const [worker] = await Promise.all([ const [worker] = await Promise.all([
page.waitForEvent('worker'), page.waitForEvent('worker'),
page.goto(server.PREFIX + '/worker/worker.html'), page.goto(server.PREFIX + '/worker/worker.html'),
@ -160,7 +161,7 @@ it('should report network activity', async function({ page, server, browserName,
}); });
it('should report network activity on worker creation', async function({ page, server, browserName, browserMajorVersion }) { it('should report network activity on worker creation', async function({ page, server, browserName, browserMajorVersion }) {
it.fixme(browserName === 'firefox' && browserMajorVersion >= 112, 'https://github.com/microsoft/playwright/issues/21760'); it.skip(browserName === 'firefox' && browserMajorVersion < 114, 'https://github.com/microsoft/playwright/issues/21760');
// Chromium needs waitForDebugger enabled for this one. // Chromium needs waitForDebugger enabled for this one.
await page.goto(server.EMPTY_PAGE); await page.goto(server.EMPTY_PAGE);
const url = server.PREFIX + '/one-style.css'; const url = server.PREFIX + '/one-style.css';