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)
| 10425 | return self.wait_for_element_present(selector, by=by, timeout=timeout) |
| 10426 | |
| 10427 | def wait_for_selector(self, selector, by="css selector", timeout=None): |
| 10428 | """Same as wait_for_element_present() - returns the element. |
| 10429 | The element does not need be visible (it may be hidden).""" |
| 10430 | return self.wait_for_element_present(selector, by=by, timeout=timeout) |
| 10431 | |
| 10432 | def wait_for_query_selector( |
| 10433 | self, selector, by="css selector", timeout=None |
no test coverage detected