mirror of
https://github.com/microsoft/playwright.git
synced 2025-01-05 19:04:43 +03:00
test: make webview2 green (#19429)
This commit is contained in:
parent
af1783f4a8
commit
7b4ae20305
@ -141,9 +141,10 @@ 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, channel }) {
|
||||
it('rich text editable fields should have children', async function({ page, browserName, browserVersion, channel, isWebView2 }) {
|
||||
it.skip(browserName === 'webkit', 'WebKit rich text accessibility is iffy');
|
||||
it.skip(channel && channel.startsWith('msedge'), 'Edge is missing a Chromium fix');
|
||||
it.skip(isWebView2, 'WebView2 is missing a Chromium fix');
|
||||
|
||||
await page.setContent(`
|
||||
<div contenteditable="true">
|
||||
|
Loading…
Reference in New Issue
Block a user