diff --git a/packages/playwright-core/browsers.json b/packages/playwright-core/browsers.json index 0b0976e220..2b55b35227 100644 --- a/packages/playwright-core/browsers.json +++ b/packages/playwright-core/browsers.json @@ -15,9 +15,9 @@ }, { "name": "chromium-tip-of-tree", - "revision": "1012", + "revision": "1014", "installByDefault": false, - "browserVersion": "104.0.5098.0" + "browserVersion": "104.0.5110.0" }, { "name": "firefox", diff --git a/tests/library/browsercontext-add-cookies.spec.ts b/tests/library/browsercontext-add-cookies.spec.ts index 96e0a64d78..9374df5b39 100644 --- a/tests/library/browsercontext-add-cookies.spec.ts +++ b/tests/library/browsercontext-add-cookies.spec.ts @@ -63,7 +63,8 @@ it('should add cookies with empty value', async ({ context, page, server }) => { expect(await page.evaluate(() => document.cookie)).toEqual('marker='); }); -it('should roundtrip cookie', async ({ context, page, server }) => { +it('should roundtrip cookie', async ({ context, page, server, channel }) => { + it.fixme(channel === 'chromium-tip-of-tree', 'https://github.com/microsoft/playwright/issues/14725'); await page.goto(server.EMPTY_PAGE); // @see https://en.wikipedia.org/wiki/Year_2038_problem const date = +(new Date('1/1/2038')); diff --git a/tests/library/browsercontext-cookies.spec.ts b/tests/library/browsercontext-cookies.spec.ts index 8692505244..8edb81da23 100644 --- a/tests/library/browsercontext-cookies.spec.ts +++ b/tests/library/browsercontext-cookies.spec.ts @@ -40,7 +40,8 @@ it('should get a cookie @smoke', async ({ context, page, server, defaultSameSite }]); }); -it('should get a non-session cookie', async ({ context, page, server, defaultSameSiteCookieValue, browserName, browserMajorVersion }) => { +it('should get a non-session cookie', async ({ context, page, server, defaultSameSiteCookieValue, channel }) => { + it.fixme(channel === 'chromium-tip-of-tree', 'https://github.com/microsoft/playwright/issues/14725'); await page.goto(server.EMPTY_PAGE); // @see https://en.wikipedia.org/wiki/Year_2038_problem const date = +(new Date('1/1/2038')); diff --git a/tests/library/popup.spec.ts b/tests/library/popup.spec.ts index 08c7ee4aea..eccbdefe31 100644 --- a/tests/library/popup.spec.ts +++ b/tests/library/popup.spec.ts @@ -126,7 +126,8 @@ it('should inherit viewport size from browser context', async function({ browser expect(size).toEqual({ width: 400, height: 500 }); }); -it('should use viewport size from window features', async function({ browser, server }) { +it('should use viewport size from window features', async function({ browser, server, channel }) { + it.fixme(channel === 'chromium-tip-of-tree', 'https://github.com/microsoft/playwright/issues/14787'); const context = await browser.newContext({ viewport: { width: 700, height: 700 } }); diff --git a/tests/page/page-accessibility.spec.ts b/tests/page/page-accessibility.spec.ts index 028162da98..3905e4c065 100644 --- a/tests/page/page-accessibility.spec.ts +++ b/tests/page/page-accessibility.spec.ts @@ -173,7 +173,7 @@ it('rich text editable fields should have children', async function({ page, brow expect(snapshot.children[0]).toEqual(golden); }); -it('rich text editable fields with role should have children', async function({ page, browserName, browserMajorVersion }) { +it('rich text editable fields with role should have children', async function({ page, browserName, browserMajorVersion, browserVersion }) { it.skip(browserName === 'webkit', 'WebKit rich text accessibility is iffy'); await page.setContent(` @@ -193,12 +193,15 @@ it('rich text editable fields with role should have children', async function({ name: '', multiline: (browserName === 'chromium' && browserMajorVersion >= 92) ? true : undefined, value: 'Edit this image: ', - children: [{ + children: (chromiumVersionLessThan(browserVersion, '104.0.5106.0') && browserName === 'chromium') ? [{ role: 'text', name: 'Edit this image:' }, { role: 'img', name: 'my fake image' + }] : [{ + role: 'text', + name: 'Edit this image:' }] }; const snapshot = await page.accessibility.snapshot();