* {{> seeElementInDOM }} *
(locator)
| 1673 | * |
| 1674 | */ |
| 1675 | async seeElementInDOM(locator) { |
| 1676 | const res = await this._res(locator) |
| 1677 | try { |
| 1678 | return empty('elements').negate(res) |
| 1679 | } catch (e) { |
| 1680 | dontSeeElementInDOMError(locator) |
| 1681 | } |
| 1682 | } |
| 1683 | |
| 1684 | /** |
| 1685 | * {{> dontSeeElementInDOM }} |
nothing calls this directly
no test coverage detected