From 809e8306e2770236548bb9fc33fe644a3337b388 Mon Sep 17 00:00:00 2001 From: Yordan Ramchev <69005114+Yordan-Ramchev@users.noreply.github.com> Date: Wed, 15 May 2024 16:27:51 +0300 Subject: [PATCH] fix(testing): broken playwright link (#2870) Update testing.md 1. Remove dead playwright read more link - https://playwright.dev/docs/why-playwright 2. Added info text from https://playwright.dev/docs/intro#introduction Co-authored-by: Natalia Tepluhina --- src/guide/scaling-up/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/scaling-up/testing.md b/src/guide/scaling-up/testing.md index 465342ae4..0316d7a7e 100644 --- a/src/guide/scaling-up/testing.md +++ b/src/guide/scaling-up/testing.md @@ -267,7 +267,7 @@ When end-to-end (E2E) tests are run in continuous integration/deployment pipelin ### Other Options {#other-options-2} -- [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. +- [Playwright](https://playwright.dev/) is also a great E2E testing solution that supports all modern rendering engines including Chromium, WebKit, and Firefox. Test on Windows, Linux, and macOS, locally or on CI, headless or headed with native mobile emulation of Google Chrome for Android and Mobile Safari. - [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.