From 3272af9f9686ce82bb5fef123616428ccafabce3 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Wed, 8 Dec 2021 09:39:14 -0800 Subject: [PATCH] test: mark "fill color input" test as dailing on wk windows (#10792) --- tests/page/page-fill.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/page/page-fill.spec.ts b/tests/page/page-fill.spec.ts index b7faedb674..9dae1ee304 100644 --- a/tests/page/page-fill.spec.ts +++ b/tests/page/page-fill.spec.ts @@ -105,7 +105,8 @@ it('should fill color input', async ({ page }) => { expect(await page.$eval('input', input => input.value)).toBe('#aaaaaa'); }); -it('should throw on incorrect color value', async ({ page }) => { +it('should throw on incorrect color value', async ({ page, browserName, isWindows }) => { + it.skip(browserName === 'webkit' && isWindows, 'WebKit win does not support color inputs'); await page.setContent(''); const error1 = await page.fill('input', 'badvalue').catch(e => e); expect(error1.message).toContain('Malformed value');