mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-03 07:51:12 +03:00
test: skip a couple of a11y tests on Edge temporarily (#18824)
This commit is contained in:
parent
250bc9fb2f
commit
705df52500
@ -141,8 +141,9 @@ 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, browserVersion }) {
|
||||
it('rich text editable fields should have children', async function({ page, browserName, browserVersion, channel }) {
|
||||
it.skip(browserName === 'webkit', 'WebKit rich text accessibility is iffy');
|
||||
it.skip(channel && channel.startsWith('msedge'), 'Edge is missing a Chromium fix');
|
||||
|
||||
await page.setContent(`
|
||||
<div contenteditable="true">
|
||||
@ -174,8 +175,9 @@ 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, browserVersion }) {
|
||||
it('rich text editable fields with role should have children', async function({ page, browserName, browserMajorVersion, browserVersion, channel }) {
|
||||
it.skip(browserName === 'webkit', 'WebKit rich text accessibility is iffy');
|
||||
it.skip(channel && channel.startsWith('msedge'), 'Edge is missing a Chromium fix');
|
||||
|
||||
await page.setContent(`
|
||||
<div contenteditable="true" role='textbox'>
|
||||
|
Loading…
Reference in New Issue
Block a user