* Click the element at the default location for the current environment. If you need to guarantee * the element is clicked at a specific location, consider using `click('center')` or * `click(x, y)` instead.
(modifiers?: ModifierKeys)
| 85 | * `click(x, y)` instead. |
| 86 | */ |
| 87 | click(modifiers?: ModifierKeys): Promise<void>; |
| 88 | |
| 89 | /** Click the element at the element's center. */ |
| 90 | click(location: 'center', modifiers?: ModifierKeys): Promise<void>; |
no outgoing calls