Returns whether there's an exact match for the link text.
(self, link_text)
| 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.""" |
no test coverage detected