* Get elements by different locator types, including strict locator * Should be used in custom helpers: * * ```js * const elements = await this.helpers['Puppeteer']._locate({name: 'password'}); * ``` *
(locator)
| 993 | * |
| 994 | */ |
| 995 | async _locate(locator) { |
| 996 | const context = await this.context |
| 997 | return findElements.call(this, context, locator) |
| 998 | } |
| 999 | |
| 1000 | /** |
| 1001 | * Get single element by different locator types, including strict locator |
no outgoing calls
no test coverage detected