* {{> grabTextFromAll }} *
(locator)
| 2734 | * |
| 2735 | */ |
| 2736 | async grabTextFromAll(locator) { |
| 2737 | const els = await this._locate(locator) |
| 2738 | const texts = [] |
| 2739 | for (const el of els) { |
| 2740 | texts.push(await el.innerText()) |
| 2741 | } |
| 2742 | return texts |
| 2743 | } |
| 2744 | |
| 2745 | /** |
| 2746 | * {{> grabValueFrom }} |