Assert element is not present in the DOM.
(self, selector, timeout=None)
| 3252 | return True |
| 3253 | |
| 3254 | def assert_element_absent(self, selector, timeout=None): |
| 3255 | """Assert element is not present in the DOM.""" |
| 3256 | self.wait_for_element_absent(selector, timeout=timeout) |
| 3257 | return True |
| 3258 | |
| 3259 | def assert_element_not_visible(self, selector, timeout=None): |
| 3260 | """Assert element is not visible on page. (May still be in DOM)""" |