Same as wait_for_element_visible() - returns the element
(self, selector, by="css selector", timeout=None)
| 10528 | return True |
| 10529 | |
| 10530 | def find_element(self, selector, by="css selector", timeout=None): |
| 10531 | """Same as wait_for_element_visible() - returns the element""" |
| 10532 | return self.wait_for_element_visible(selector, by=by, timeout=timeout) |
| 10533 | |
| 10534 | def assert_element(self, selector, by="css selector", timeout=None): |
| 10535 | """Similar to wait_for_element_visible(), but returns nothing. |
no test coverage detected