* {{> grabCssPropertyFrom }} *
(locator, cssProperty)
| 2783 | * |
| 2784 | */ |
| 2785 | async grabCssPropertyFrom(locator, cssProperty) { |
| 2786 | const cssValues = await this.grabCssPropertyFromAll(locator, cssProperty) |
| 2787 | assertElementExists(cssValues, locator) |
| 2788 | this.debugSection('CSS', cssValues[0]) |
| 2789 | return cssValues[0] |
| 2790 | } |
| 2791 | |
| 2792 | /** |
| 2793 | * {{> grabCssPropertyFromAll }} |
no test coverage detected