Skip to content

Commit

Permalink
chore: run docs script to regenerate doc. | Previous pool requests we…
Browse files Browse the repository at this point in the history
…re merged without generating documentation.
  • Loading branch information
EgorBodnar committed May 29, 2023
1 parent 451d1e9 commit d3c5968
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/helpers/Appium.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ Launch the daemon: `appium`

This helper should be configured in codecept.conf.ts or codecept.conf.js

- `appiumV2`: set this to true if you want to run with Appiumv2
- `app`: Application path. Local path or remote URL to an .ipa or .apk file, or a .zip containing one of these. Alias to desiredCapabilities.appPackage
- `host`: (default: 'localhost') Appium host
- `port`: (default: '4723') Appium port
Expand Down Expand Up @@ -841,6 +840,8 @@ Field is located by name, label, CSS or XPath

```js
I.appendField('#myTextField', 'appended');
// typing secret
I.appendField('password', secret('123456'));
```

#### Parameters
Expand Down
2 changes: 2 additions & 0 deletions docs/helpers/Nightmare.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ Field is located by name, label, CSS or XPath

```js
I.appendField('#myTextField', 'appended');
// typing secret
I.appendField('password', secret('123456'));
```

#### Parameters
Expand Down
5 changes: 5 additions & 0 deletions docs/helpers/Puppeteer.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,8 @@ Field is located by name, label, CSS or XPath

```js
I.appendField('#myTextField', 'appended');
// typing secret
I.appendField('password', secret('123456'));
```

#### Parameters
Expand Down Expand Up @@ -1786,6 +1788,9 @@ I.type('4141555311111111', 100);

// passing in an array
I.type(['T', 'E', 'X', 'T']);

// passing a secret
I.type(secret('123456'));
```
#### Parameters
Expand Down
2 changes: 2 additions & 0 deletions docs/helpers/TestCafe.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ Field is located by name, label, CSS or XPath

```js
I.appendField('#myTextField', 'appended');
// typing secret
I.appendField('password', secret('123456'));
```

#### Parameters
Expand Down
5 changes: 5 additions & 0 deletions docs/helpers/WebDriver.md
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,8 @@ Field is located by name, label, CSS or XPath

```js
I.appendField('#myTextField', 'appended');
// typing secret
I.appendField('password', secret('123456'));
```

#### Parameters
Expand Down Expand Up @@ -1985,6 +1987,9 @@ I.type('4141555311111111', 100);

// passing in an array
I.type(['T', 'E', 'X', 'T']);

// passing a secret
I.type(secret('123456'));
```
#### Parameters
Expand Down

0 comments on commit d3c5968

Please sign in to comment.