* Find a clickable element by providing human-readable text: * * ```js * this.helpers['Playwright']._locateClickable('Next page').then // ... * ```
(locator)
| 1809 | * ``` |
| 1810 | */ |
| 1811 | async _locateClickable(locator) { |
| 1812 | const context = await this._getContext() |
| 1813 | return findClickable.call(this, context, locator) |
| 1814 | } |
| 1815 | |
| 1816 | /** |
| 1817 | * Find field elements by providing human-readable text: |
nothing calls this directly
no test coverage detected