feat(firefox-beta): roll to r1394 (#22052)

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

---------

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-03-29 10:47:31 -07:00 committed by GitHub
parent 7f1de6568c
commit d8f5a3f2ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 5 deletions

View File

@ -27,9 +27,9 @@
},
{
"name": "firefox-beta",
"revision": "1391",
"revision": "1394",
"installByDefault": false,
"browserVersion": "110.0b7"
"browserVersion": "112.0b3"
},
{
"name": "webkit",

View File

@ -92,7 +92,8 @@ it('should work with glob', async () => {
expect(globToRegex('http://localhost:3000/signin-oidc*').test('http://localhost:3000/signin-oidcnice')).toBeTruthy();
});
it('should intercept network activity from worker', async function({ page, server, isAndroid }) {
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(isAndroid);
await page.goto(server.EMPTY_PAGE);

View File

@ -142,7 +142,8 @@ it('should attribute network activity for worker inside iframe to the iframe', a
expect(request.frame()).toBe(frame);
});
it('should report network activity', async function({ page, server }) {
it('should report network activity', async function({ page, server, browserName, browserMajorVersion }) {
it.fixme(browserName === 'firefox' && browserMajorVersion === 112, 'https://github.com/microsoft/playwright/issues/21760');
const [worker] = await Promise.all([
page.waitForEvent('worker'),
page.goto(server.PREFIX + '/worker/worker.html'),
@ -158,7 +159,8 @@ it('should report network activity', async function({ page, server }) {
expect(response.ok()).toBe(true);
});
it('should report network activity on worker creation', async function({ page, server }) {
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');
// Chromium needs waitForDebugger enabled for this one.
await page.goto(server.EMPTY_PAGE);
const url = server.PREFIX + '/one-style.css';