* {{> seeElementInDOM }}
(locator)
| 2008 | * {{> seeElementInDOM }} |
| 2009 | */ |
| 2010 | async seeElementInDOM(locator) { |
| 2011 | const els = await this._locate(locator) |
| 2012 | try { |
| 2013 | return empty('elements on page').negate(els.filter(v => v).fill('ELEMENT')) |
| 2014 | } catch (e) { |
| 2015 | dontSeeElementInDOMError(locator) |
| 2016 | } |
| 2017 | } |
| 2018 | |
| 2019 | /** |
| 2020 | * {{> dontSeeElementInDOM }} |
nothing calls this directly
no test coverage detected