test: add test for color input click behavior

This commit is contained in:
Max Schmitt 2024-12-28 13:08:31 +00:00
Родитель 372d4196d7
Коммит ad4719f129
1 изменённых файлов: 14 добавлений и 0 удалений

Просмотреть файл

@ -429,6 +429,20 @@ it('should not crash when clicking a label with a <input type="file"/>', {
expect(fileChooser.page()).toBe(page);
});
it('should not crash when clicking a color input', {
annotation: {
type: 'issue',
description: 'https://github.com/microsoft/playwright/issues/33864'
}
}, async ({ page }) => {
await page.setContent('<input type="color">');
const input = page.locator('input');
await expect(input).toBeVisible();
await input.click();
await expect(input).toBeVisible();
});
it('should not auto play audio', {
annotation: {
type: 'issue',