diff --git a/packages/playwright-core/browsers.json b/packages/playwright-core/browsers.json index 90ef0a3f1c..216f7623f8 100644 --- a/packages/playwright-core/browsers.json +++ b/packages/playwright-core/browsers.json @@ -15,9 +15,9 @@ }, { "name": "chromium-tip-of-tree", - "revision": "1044", + "revision": "1046", "installByDefault": false, - "browserVersion": "108.0.5311.0" + "browserVersion": "108.0.5325.0" }, { "name": "firefox", diff --git a/tests/page/page-accessibility.spec.ts b/tests/page/page-accessibility.spec.ts index 2be06495db..635943dc9b 100644 --- a/tests/page/page-accessibility.spec.ts +++ b/tests/page/page-accessibility.spec.ts @@ -141,7 +141,7 @@ it('should not report text nodes inside controls', async function({ page, browse expect(await page.accessibility.snapshot()).toEqual(golden); }); -it('rich text editable fields should have children', async function({ page, browserName }) { +it('rich text editable fields should have children', async function({ page, browserName, browserVersion }) { it.skip(browserName === 'webkit', 'WebKit rich text accessibility is iffy'); await page.setContent(` @@ -164,7 +164,7 @@ it('rich text editable fields should have children', async function({ page, brow value: 'Edit this image: ', children: [{ role: 'text', - name: 'Edit this image:' + name: chromiumVersionLessThan(browserVersion, '108.0.5325.0') ? 'Edit this image:' : 'Edit this image: ' }, { role: 'img', name: 'my fake image' @@ -202,7 +202,7 @@ it('rich text editable fields with role should have children', async function({ name: 'my fake image' }] : [{ role: 'text', - name: 'Edit this image:' + name: chromiumVersionLessThan(browserVersion, '108.0.5325.0') ? 'Edit this image:' : 'Edit this image: ' }] }; const snapshot = await page.accessibility.snapshot();