codeceptjs 3.5.2 → 3.5.4-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -59,7 +59,7 @@ For WebDriver installation Selenium Server is required 👇
59
59
 
60
60
  ## WebDriver
61
61
 
62
- WebDriver based helpers like WebDriver, Protractor, Selenium WebDriver will require [Selenium Server](https://codecept.io/helpers/WebDriver/#selenium-installation) installed. They will also require ChromeDriver or GeckoDriver to run corresponding browsers.
62
+ WebDriver based helpers like WebDriver will require [Selenium Server](https://codecept.io/helpers/WebDriver/#selenium-installation) installed. They will also require ChromeDriver or GeckoDriver to run corresponding browsers.
63
63
 
64
64
  We recommend to install them manually or use NPM packages:
65
65
 
package/docs/mobile.md CHANGED
@@ -123,9 +123,7 @@ Select [Appium helper](https://codecept.io/helpers/Appium/) when asked.
123
123
  ```sh
124
124
  ? What helpers do you want to use?
125
125
  ◯ WebDriver
126
- ◯ Protractor
127
126
  ◯ Puppeteer
128
- ◯ Nightmare
129
127
  ❯◉ Appium
130
128
  ◯ REST
131
129
  ```
package/docs/plugins.md CHANGED
@@ -1152,8 +1152,6 @@ plugins: {
1152
1152
  }
1153
1153
  ```
1154
1154
 
1155
- Please note, this service can be used with Protractor helper as well!
1156
-
1157
1155
  #### Sauce Service
1158
1156
 
1159
1157
  Install `@wdio/sauce-service` package, as [described here][19].
@@ -31,7 +31,6 @@ TestCafe provides cross-browser support without Selenium. TestCafe tests are fas
31
31
  ---
32
32
 
33
33
  * [Mobile Testing with Appium »](/mobile)
34
- * [Testing with Protractor »](/angular)
35
34
 
36
35
  :::
37
36
 
package/docs/testcafe.md CHANGED
@@ -5,7 +5,7 @@ title: Testing with TestCafe
5
5
 
6
6
  # Testing with TestCafe
7
7
 
8
- [TestCafe](https://devexpress.github.io/testcafe/) is another alternative engine for driving browsers. It is driven by unique technology which provides fast and simple cross browser testing for desktop and mobile browsers. Unlike WebDriver or Puppeteer, TestCafe doesn't control a browser at all. It is not a browser itself, like [Nightmare](/nightmare) or Cypress. **TestCafe core is a proxy server** that runs behind the scene, and transforms all HTML and JS to include code that is needed for test automation.
8
+ [TestCafe](https://devexpress.github.io/testcafe/) is another alternative engine for driving browsers. It is driven by unique technology which provides fast and simple cross browser testing for desktop and mobile browsers. Unlike WebDriver or Puppeteer, TestCafe doesn't control a browser at all. It is not a browser itself, like Cypress. **TestCafe core is a proxy server** that runs behind the scene, and transforms all HTML and JS to include code that is needed for test automation.
9
9
 
10
10
  ![Testcafe](/img/testcafe.png)
11
11
 
package/docs/webdriver.md CHANGED
@@ -21,8 +21,6 @@ Let's clarify the terms:
21
21
 
22
22
  We use [webdriverio](https://webdriver.io) library to run tests over WebDriver.
23
23
 
24
- > Popular tool [Protractor](/angular) also uses WebDriver for running end 2 end tests.
25
-
26
24
  To proceed you need to have [CodeceptJS installed](/quickstart#using-selenium-webdriver) and `WebDriver` helper selected.
27
25
 
28
26
  Selenium WebDriver may be complicated from start, as it requires following tools to be installed and started.
@@ -20,7 +20,7 @@ const defaultConfig = {
20
20
  include: {},
21
21
  };
22
22
 
23
- const helpers = ['Playwright', 'WebDriver', 'Puppeteer', 'REST', 'GraphQL', 'Appium', 'TestCafe', 'Nightmare'];
23
+ const helpers = ['Playwright', 'WebDriver', 'Puppeteer', 'REST', 'GraphQL', 'Appium', 'TestCafe'];
24
24
  const translations = Object.keys(require('../../translations'));
25
25
 
26
26
  const noTranslation = 'English (no localization)';