MCPcopy Create free account
hub / github.com/seleniumbase/SeleniumBase / wait_for_selector

Method wait_for_selector

seleniumbase/fixtures/base_case.py:10427–10430  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 15

mainFunction · 0.45
mainFunction · 0.45
raw_gitlab_sync.pyFile · 0.45
mainFunction · 0.45
mainFunction · 0.45
raw_basic_sync.pyFile · 0.45

Calls 1

Tested by

no test coverage detected