Same as assert_text()
(
self, text, selector="body", by="css selector", timeout=None
)
| 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 |
nothing calls this directly
no test coverage detected