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

Method is_link_text_visible

seleniumbase/fixtures/base_case.py:1543–1549  ·  view source on GitHub ↗

Returns whether there's an exact match for the link text.

(self, link_text)

Source from the content-addressed store, hash-verified

1541 )
1542
1543 def is_link_text_visible(self, link_text):
1544 """Returns whether there's an exact match for the link text."""
1545 self.wait_for_ready_state_complete()
1546 time.sleep(0.01)
1547 return page_actions.is_element_visible(
1548 self.driver, link_text, by="link text"
1549 )
1550
1551 def is_partial_link_text_visible(self, partial_link_text):
1552 """Returns whether there's a substring match for the link text."""

Callers 1

clickMethod · 0.95

Calls 3

sleepMethod · 0.45
is_element_visibleMethod · 0.45

Tested by

no test coverage detected