You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This script will also update `scripts` section of `package.json` so you could execute tests faster without learning Codeceptjs commands.
21
-
22
-
## Installation
23
-
24
-
No installation needed 🤗
18
+
This script will also add several commands to the `scripts` section of your `package.json`, so you can just execute tests without the need to learn custom CodeceptJS commands.
25
19
26
20
## Usage
27
21
28
-
29
-
Install CodeceptJS + Playwright into current project
22
+
To install CodeceptJS + Playwright into your current project run
30
23
31
24
```
32
25
npx create-codeceptjs
33
26
```
34
27
35
-
Install CodeceptJS into "tests" directory
28
+
To install CodeceptJS + Playwright into the "tests" directory run
36
29
37
30
```
38
31
npx create-codeceptjs tests
39
32
```
40
33
41
-
Install CodeceptJS + webdriverio:
34
+
To install CodeceptJS + WebdriverIO run
42
35
43
36
```
44
37
npx create-codeceptjs --webdriverio
45
38
```
46
39
47
-
Install CodeceptJS + webdriverio into "tests" directory
40
+
To install CodeceptJS + WebdriverIO into "tests" directory
48
41
49
42
```
50
43
npx create-codeceptjs tests --webdriverio
51
44
```
52
45
53
46
Supported options:
54
47
55
-
*`--puppeteer` - install puppeteer as default helper
56
-
*`--testcafe` - install testcafe as default helper
57
-
*`--yarn` - yes, we support yarn too!
58
-
59
-
48
+
*`--puppeteer` - installs Puppeteer as default helper
49
+
*`--webdriverio` - installs WebdriverIO as default helper
50
+
*`--testcafe` - installs TestCafe as default helper
0 commit comments