* {{> blur }} *
(locator, options = {})
| 1540 | * |
| 1541 | */ |
| 1542 | async blur(locator, options = {}) { |
| 1543 | const el = await this._locateElement(locator) |
| 1544 | assertElementExists(el, locator, 'Element to blur') |
| 1545 | |
| 1546 | await el.blur(options) |
| 1547 | return this._waitForAction() |
| 1548 | } |
| 1549 | /** |
| 1550 | * Return the checked status of given element. |
| 1551 | * |
nothing calls this directly
no test coverage detected