skip new headless=new
This commit is contained in:
parent
b5c4961252
commit
71fea4aca1
|
|
@ -120,7 +120,8 @@ it('clicking checkbox should activate it', async ({ page, browserName, headless,
|
||||||
it('tab should cycle between single input and browser', {
|
it('tab should cycle between single input and browser', {
|
||||||
annotation: { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/32339' }
|
annotation: { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/32339' }
|
||||||
}, async ({ page, browserName, headless }) => {
|
}, async ({ page, browserName, headless }) => {
|
||||||
it.fixme(browserName === 'chromium' && !headless, 'Chromium in headful mode keeps input focused.');
|
it.fixme(browserName === 'chromium' && (!headless || !!process.env.PLAYWRIGHT_CHROMIUM_USE_HEADLESS_NEW),
|
||||||
|
'Chromium in headful mode keeps input focused.');
|
||||||
it.fixme(browserName !== 'chromium');
|
it.fixme(browserName !== 'chromium');
|
||||||
await page.setContent(`<label for="input1">input1</label>
|
await page.setContent(`<label for="input1">input1</label>
|
||||||
<input id="input1">
|
<input id="input1">
|
||||||
|
|
@ -147,7 +148,8 @@ it('tab should cycle between single input and browser', {
|
||||||
it('tab should cycle between document elements and browser', {
|
it('tab should cycle between document elements and browser', {
|
||||||
annotation: { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/32339' }
|
annotation: { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/32339' }
|
||||||
}, async ({ page, browserName, headless }) => {
|
}, async ({ page, browserName, headless }) => {
|
||||||
it.fixme(browserName === 'chromium' && !headless, 'Chromium in headful mode keeps last input focused.');
|
it.fixme(browserName === 'chromium' && (!headless || !!process.env.PLAYWRIGHT_CHROMIUM_USE_HEADLESS_NEW),
|
||||||
|
'Chromium in headful mode keeps last input focused.');
|
||||||
it.fixme(browserName !== 'chromium');
|
it.fixme(browserName !== 'chromium');
|
||||||
await page.setContent(`
|
await page.setContent(`
|
||||||
<input id="input1">
|
<input id="input1">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue