* {{> blur }} *
(locator)
| 2330 | * |
| 2331 | */ |
| 2332 | async blur(locator) { |
| 2333 | const els = await this._locate(locator) |
| 2334 | assertElementExists(els, locator, 'Element to blur') |
| 2335 | const el = usingFirstElement(els) |
| 2336 | |
| 2337 | await blurElement(el, this.browser) |
| 2338 | } |
| 2339 | |
| 2340 | /** |
| 2341 | * Appium: not tested |
no test coverage detected