* {{> dontSeeElementInDOM }} *
(locator)
| 1686 | * |
| 1687 | */ |
| 1688 | async dontSeeElementInDOM(locator) { |
| 1689 | const res = await this._res(locator) |
| 1690 | try { |
| 1691 | return empty('elements').assert(res) |
| 1692 | } catch (e) { |
| 1693 | seeElementInDOMError(locator) |
| 1694 | } |
| 1695 | } |
| 1696 | |
| 1697 | /** |
| 1698 | * {{> seeInSource }} |
nothing calls this directly
no test coverage detected