* {{> grabWebElements }} *
(locator)
| 1829 | * |
| 1830 | */ |
| 1831 | async grabWebElements(locator) { |
| 1832 | const elements = await this._locate(locator) |
| 1833 | return elements.map(element => new WebElement(element, this)) |
| 1834 | } |
| 1835 | |
| 1836 | /** |
| 1837 | * {{> grabWebElement }} |