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 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.
23
19
24
20
## Usage
25
21
26
-
27
-
Install CodeceptJS + Playwright into current project
22
+
To install CodeceptJS + Playwright into your current project run
28
23
29
24
```
30
25
npx create-codeceptjs
31
26
```
32
27
33
-
Install CodeceptJS into "tests" directory
28
+
To install CodeceptJS + Playwright into the "tests" directory run
34
29
35
30
```
36
31
npx create-codeceptjs tests
37
32
```
38
33
39
-
Install CodeceptJS + webdriverio:
34
+
To install CodeceptJS + WebdriverIO run
40
35
41
36
```
42
37
npx create-codeceptjs --webdriverio
43
38
```
44
39
45
-
Install CodeceptJS + webdriverio into "tests" directory
40
+
To install CodeceptJS + WebdriverIO into "tests" directory
46
41
47
42
```
48
43
npx create-codeceptjs tests --webdriverio
49
44
```
50
45
51
46
Supported options:
52
47
53
-
*`--puppeteer` - install puppeteer as default helper
54
-
*`--testcafe` - install testcafe as default helper
55
-
*`--yarn` - yes, we support yarn too!
56
-
57
-
48
+
*`--puppeteer` - installs Puppeteer as default helper
49
+
*`--webdriverio` - installs WebdriverIO as default helper
50
+
*`--testcafe` - installs TestCafe as default helper
0 commit comments