* {{> grabAttributeFromAll }}
(locator, attr)
| 1527 | * {{> grabAttributeFromAll }} |
| 1528 | */ |
| 1529 | async grabAttributeFromAll(locator, attr) { |
| 1530 | const res = await this._locate(locator, true) |
| 1531 | const val = await forEachAsync(res, async el => el.getAttribute(attr)) |
| 1532 | this.debugSection('GrabAttribute', String(val)) |
| 1533 | return val |
| 1534 | } |
| 1535 | |
| 1536 | /** |
| 1537 | * {{> grabAttributeFrom }} |
no test coverage detected