Same as wait_for_element_present() - returns the element. The element does not need be visible (it may be hidden).
(self, selector, by="css selector", timeout=None)
| 10415 | ) |
| 10416 | |
| 10417 | def get_element(self, selector, by="css selector", timeout=None): |
| 10418 | """Same as wait_for_element_present() - returns the element. |
| 10419 | The element does not need be visible (it may be hidden).""" |
| 10420 | return self.wait_for_element_present(selector, by=by, timeout=timeout) |
| 10421 | |
| 10422 | def locator(self, selector, by="css selector", timeout=None): |
| 10423 | """Same as wait_for_element_present() - returns the element. |
no test coverage detected