diff --git a/README.md b/README.md index bc13881fda..4fc8dbe546 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # 🎭 Playwright -[![npm version](https://img.shields.io/npm/v/playwright.svg?style=flat)](https://www.npmjs.com/package/playwright) [![Join Slack](https://img.shields.io/badge/join-slack-infomational)](https://aka.ms/playwright-slack) [![Chromium version](https://img.shields.io/badge/chromium-91.0.4469.0-blue.svg?logo=google-chrome)](https://www.chromium.org/Home) [![Firefox version](https://img.shields.io/badge/firefox-88.0b8-blue.svg?logo=mozilla-firefox)](https://www.mozilla.org/en-US/firefox/new/) [![WebKit version](https://img.shields.io/badge/webkit-14.2-blue.svg?logo=safari)](https://webkit.org/) +[![npm version](https://img.shields.io/npm/v/playwright.svg?style=flat)](https://www.npmjs.com/package/playwright) [![Join Slack](https://img.shields.io/badge/join-slack-infomational)](https://aka.ms/playwright-slack) [![Chromium version](https://img.shields.io/badge/chromium-91.0.4469.0-blue.svg?logo=google-chrome)](https://www.chromium.org/Home) [![Firefox version](https://img.shields.io/badge/firefox-89.0b2-blue.svg?logo=mozilla-firefox)](https://www.mozilla.org/en-US/firefox/new/) [![WebKit version](https://img.shields.io/badge/webkit-14.2-blue.svg?logo=safari)](https://webkit.org/) ## [Documentation](https://playwright.dev) | [API reference](https://playwright.dev/docs/api/class-playwright/) @@ -10,7 +10,7 @@ Playwright is a Node.js library to automate [Chromium](https://www.chromium.org/ | :--- | :---: | :---: | :---: | | Chromium 91.0.4469.0 | :white_check_mark: | :white_check_mark: | :white_check_mark: | | WebKit 14.2 | :white_check_mark: | :white_check_mark: | :white_check_mark: | -| Firefox 88.0b8 | :white_check_mark: | :white_check_mark: | :white_check_mark: | +| Firefox 89.0b2 | :white_check_mark: | :white_check_mark: | :white_check_mark: | Headless execution is supported for all the browsers on all platforms. Check out [system requirements](https://playwright.dev/docs/intro/#system-requirements) for details. diff --git a/browsers.json b/browsers.json index e0188a56d6..642d0c2aca 100644 --- a/browsers.json +++ b/browsers.json @@ -8,7 +8,7 @@ }, { "name": "firefox", - "revision": "1245", + "revision": "1248", "installByDefault": true }, { diff --git a/tests/headful.spec.ts b/tests/headful.spec.ts index 0003c3e80e..d65e6e6b13 100644 --- a/tests/headful.spec.ts +++ b/tests/headful.spec.ts @@ -166,6 +166,7 @@ it('Page.bringToFront should work', async ({browserType, browserOptions}) => { it('focused input should produce the same screenshot', async ({browserType, browserOptions, browserName, platform, browserChannel}, testInfo) => { it.fail(browserName === 'firefox' && platform === 'darwin', 'headless has thinner outline'); it.fail(browserName === 'firefox' && platform === 'linux', 'headless has no outline'); + it.fail(browserName === 'firefox' && platform === 'win32', 'headless has outline since new version'); it.skip(browserName === 'webkit' && platform === 'linux', 'gtk vs wpe'); it.skip(!!process.env.CRPATH); it.skip(!!browserChannel, 'Uncomment on roll');