* {{> grabWebElements }} *
(locator)
| 1018 | * |
| 1019 | */ |
| 1020 | async grabWebElements(locator) { |
| 1021 | const elements = await this._locate(locator) |
| 1022 | return elements.map(element => new WebElement(element, this)) |
| 1023 | } |
| 1024 | |
| 1025 | /** |
| 1026 | * {{> grabWebElement }} |