mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
test: enable filechooser test in chromium (#11653)
This commit is contained in:
parent
0e7e63f09f
commit
ba86dab83a
@ -398,9 +398,9 @@ it('should work for "webkitdirectory"', async ({ page, server }) => {
|
||||
expect(fileChooser.isMultiple()).toBe(true);
|
||||
});
|
||||
|
||||
it('should emit event after navigation', async ({ page, server, browserName }) => {
|
||||
it('should emit event after navigation', async ({ page, server, browserName, browserMajorVersion }) => {
|
||||
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/11375' });
|
||||
it.fixme(browserName === 'chromium');
|
||||
it.skip(browserName === 'chromium' && browserMajorVersion < 99);
|
||||
|
||||
const logs = [];
|
||||
page.on('filechooser', () => logs.push('filechooser'));
|
||||
|
Loading…
x
Reference in New Issue
Block a user