* {{> dontSeeElementInDOM }}
(locator)
| 2020 | * {{> dontSeeElementInDOM }} |
| 2021 | */ |
| 2022 | async dontSeeElementInDOM(locator) { |
| 2023 | const els = await this._locate(locator) |
| 2024 | try { |
| 2025 | return empty('elements on a page').assert(els.filter(v => v).fill('ELEMENT')) |
| 2026 | } catch (e) { |
| 2027 | seeElementInDOMError(locator) |
| 2028 | } |
| 2029 | } |
| 2030 | |
| 2031 | /** |
| 2032 | * Handles a file download. A file name is required to save the file on disk. |
nothing calls this directly
no test coverage detected