* {{> grabCssPropertyFromAll }}
(locator, cssProperty)
| 1503 | * {{> grabCssPropertyFromAll }} |
| 1504 | */ |
| 1505 | async grabCssPropertyFromAll(locator, cssProperty) { |
| 1506 | const res = await this._locate(locator, true) |
| 1507 | const val = await forEachAsync(res, async el => this.browser.getElementCSSValue(getElementId(el), cssProperty)) |
| 1508 | this.debugSection('Grab', String(val)) |
| 1509 | return val |
| 1510 | } |
| 1511 | |
| 1512 | /** |
| 1513 | * {{> grabCssPropertyFrom }} |
no test coverage detected