From c7da155f778aea325a08395f7cb940840582a4b6 Mon Sep 17 00:00:00 2001 From: Nathan Babcock Date: Wed, 3 May 2023 04:22:35 -0500 Subject: [PATCH] fix(docs): correct typo and broken link to WebdriverIO (#3275) --- docs/guide/comparisons.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/comparisons.md b/docs/guide/comparisons.md index 9ecb92968c0a..790b4ccbd0f3 100644 --- a/docs/guide/comparisons.md +++ b/docs/guide/comparisons.md @@ -28,7 +28,7 @@ We believe that Cypress isn't a good option for unit testing headless code, but ## WebdriverIO -[WebdriverIO](https://webdriver.io/) is similar to Cypress a browser based alternative test runner and a complementary tool to Vitest. It can be used as end-to-end testing tool as well as for testing [web components](https://webdriver.io/docs/component-testing). It even uses components of Vitest under the hood, e.g. for [mocking and stubing](https://webdriver.io/docs/component-testing/mocks-and-spies) within component tests. +[WebdriverIO](https://webdriver.io/) is similar to Cypress a browser based alternative test runner and a complementary tool to Vitest. It can be used as end-to-end testing tool as well as for testing [web components](https://webdriver.io/docs/component-testing). It even uses components of Vitest under the hood, e.g. for [mocking and stubbing](https://webdriver.io/docs/mocksandspies/) within component tests. WebdriverIO comes with the same advantages as Cypress allowing you to test your logic in real browser. However it uses actual [web standards](https://w3c.github.io/webdriver/) for automation which overcomes some of the tradeoffs and limitation when running tests in Cypress. Furthermore it allows you to run tests on mobile as well, giving you access to test your application in even more environments.