Skip to content

Commit fb34756

Browse files
Update docs/sources/next/javascript-api/k6-experimental/browser/elementhandle/dblclick.md
Co-authored-by: Heitor Tashiro Sergent <[email protected]>
1 parent a16f34c commit fb34756

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/sources/next/javascript-api/k6-experimental/browser/elementhandle/dblclick.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Mouse double clicks on the element.
1414
| options | object | `null` | |
1515
| options.button | string | `left` | The mouse button (`left`, `middle` or `right`) to use during the action. |
1616
| options.delay | number | `0` | Milliseconds to wait between `mousedown` and `mouseup`. |
17-
| options.force | boolean | `false` | Bypasses the actionability checks (i.e., `visible`, `stable`, `enabled`) if set to `true`. |
17+
| options.force | boolean | `false` | Bypasses the actionability checks (`visible`, `stable`, `enabled`) if set to `true`. |
1818
| options.modifiers | string[] | `null` | `Alt`, `Control`, `Meta` or `Shift` modifiers keys pressed during the action. If not specified, currently pressed modifiers are used. |
1919
| options.noWaitAfter | boolean | `false` | If set to `true` and a navigation occurs from performing this action, it doesn't wait for it to complete. |
2020
| options.position | object | `null` | A point to use relative to the top left corner of the element. If not supplied, a visible point of the element is used. |

docs/sources/next/javascript-api/k6-experimental/browser/frame/dblclick.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ Double clicks on an element matching the provided selector.
1717

1818
| Parameter | Type | Default | Description |
1919
| ------------------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
20-
| selector | string | `''` | A selector to search for an element. The first element will be used if multiple elements match the selector.
20+
| selector | string | `''` | A selector to search for an element. The first element will be used if multiple elements match the selector. |
2121
| options | object | `null` | |
2222
| options.button | string | `left` | The mouse button (`left`, `middle` or `right`) to use during the action. |
2323
| options.delay | number | `0` | Milliseconds to wait between `mousedown` and `mouseup`. |
24-
| options.force | boolean | `false` | Bypasses the actionability checks (i.e., `visible`, `stable`, `enabled`) if set to `true`.
24+
| options.force | boolean | `false` | Bypasses the actionability checks (`visible`, `stable`, `enabled`) if set to `true`. |
2525
| options.modifiers | string[] | `null` | `Alt`, `Control`, `Meta` or `Shift` modifiers keys pressed during the action. If not specified, currently pressed modifiers are used. |
2626
| options.noWaitAfter | boolean | `false` | If set to `true` and a navigation occurs from performing this action, it will not wait for it to complete. |
2727
| options.position | object | `null` | A point to use relative to the top left corner of the element. If not supplied, a visible point of the element is used. |

0 commit comments

Comments
 (0)