* {{> click }} * * @param {any} [options] [Additional options](https://playwright.dev/docs/api/class-page#page-click) for click available as 3rd argument. * * @example * * ```js * // click on element at position * I.click('canvas', '.model', { position: { x: 20, y: 40 } })
(locator = '//body', context = null, options = {})
| 2078 | * |
| 2079 | */ |
| 2080 | async click(locator = '//body', context = null, options = {}) { |
| 2081 | return proceedClick.call(this, locator, context, options) |
| 2082 | } |
| 2083 | |
| 2084 | /** |
| 2085 | * {{> forceClick }} |
no outgoing calls
no test coverage detected