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

Method assert_text_visible

seleniumbase/fixtures/base_case.py:10806–10815  ·  view source on GitHub ↗

Same as assert_text()

(
        self, text, selector="body", by="css selector", timeout=None
    )

Source from the content-addressed store, hash-verified

10804 )
10805
10806 def assert_text_visible(
10807 self, text, selector="body", by="css selector", timeout=None
10808 ):
10809 """Same as assert_text()"""
10810 self.__check_scope()
10811 if not timeout:
10812 timeout = settings.SMALL_TIMEOUT
10813 if self.timeout_multiplier and timeout == settings.SMALL_TIMEOUT:
10814 timeout = self.__get_new_timeout(timeout)
10815 return self.assert_text(text, selector, by=by, timeout=timeout)
10816
10817 def assert_text(
10818 self, text, selector="body", by="css selector", timeout=None

Callers

nothing calls this directly

Calls 3

__check_scopeMethod · 0.95
__get_new_timeoutMethod · 0.95
assert_textMethod · 0.95

Tested by

no test coverage detected