Skip to content

Commit 6bd7cc7

Browse files
authored
docs: Correct browser support sentences for Playwright and Cypress (#2865)
* docs: Correct browser language for Playwright and Cypress I was going through the testing section in preparation for teaching my Vitest workshop @ VueConf and noticed outdated information about browser support WRT Playwright + Cypress. * typo
1 parent e8ee91a commit 6bd7cc7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/guide/scaling-up/testing.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -263,13 +263,13 @@ When end-to-end (E2E) tests are run in continuous integration/deployment pipelin
263263

264264
- [Cypress](https://www.cypress.io/)
265265

266-
Overall, we believe Cypress provides the most complete E2E solution with features like an informative graphical interface, excellent debuggability, built-in assertions and stubs, flake-resistance, parallelization, and snapshots. As mentioned above, it also provides support for [Component Testing](https://docs.cypress.io/guides/component-testing/introduction). However, it only supports Chromium-based browsers and Firefox.
266+
Overall, we believe Cypress provides the most complete E2E solution with features like an informative graphical interface, excellent debuggability, built-in assertions, stubs, flake-resistance, parallelization, and snapshots. As mentioned above, it also provides support for [Component Testing](https://docs.cypress.io/guides/component-testing/introduction). It supports Chromium-based browsers, Firefox, and Electron. WebKit support is available, but marked experimental.
267267

268268
### Other Options {#other-options-2}
269269

270-
- [Playwright](https://playwright.dev/) is also a great E2E testing solution with a wider range of browser support (mainly WebKit). See [Why Playwright](https://playwright.dev/docs/why-playwright) for more details.
270+
- [Playwright](https://playwright.dev/) is also a great E2E testing solution. WebKit is supported by Playwright, but Electron is marked experimental. See [Why Playwright](https://playwright.dev/docs/why-playwright) for more details.
271271

272-
- [Nightwatch](https://nightwatchjs.org/) is an E2E testing solution based on [Selenium WebDriver](https://www.npmjs.com/package/selenium-webdriver). This gives it the widest browser support range.
272+
- [Nightwatch](https://nightwatchjs.org/) is an E2E testing solution based on [Selenium WebDriver](https://www.npmjs.com/package/selenium-webdriver). This gives it the widest browser support range, including native mobile testing. Selenium-based solutions will be slower than Playwright or Cypress.
273273

274274
- [WebdriverIO](https://webdriver.io/) is a test automation framework for web and mobile testing based on the WebDriver protocol.
275275

0 commit comments

Comments
 (0)