* {{> grabValueFromAll }} *
(locator)
| 1478 | * |
| 1479 | */ |
| 1480 | async grabValueFromAll(locator) { |
| 1481 | const res = await this._locate(locator, true) |
| 1482 | const val = await forEachAsync(res, el => el.getValue()) |
| 1483 | this.debugSection('GrabValue', String(val)) |
| 1484 | |
| 1485 | return val |
| 1486 | } |
| 1487 | |
| 1488 | /** |
| 1489 | * {{> grabValueFrom }} |
no test coverage detected