* {{> blur }} *
(locator)
| 871 | * |
| 872 | */ |
| 873 | async blur(locator) { |
| 874 | const el = await this._locateElement(locator) |
| 875 | if (!el) { |
| 876 | throw new ElementNotFound(locator, 'Element to blur') |
| 877 | } |
| 878 | |
| 879 | await blurElement(el, this.page) |
| 880 | return this._waitForAction() |
| 881 | } |
| 882 | |
| 883 | /** |
| 884 | * {{> dragAndDrop }} |
no test coverage detected