-
Notifications
You must be signed in to change notification settings - Fork 2
10. Link Text and Partial Link Text
NaveenS edited this page Aug 26, 2019
·
4 revisions
Links can be accessed using an exact or partial match of their link text. The examples below provide scenarios where multiple matches would exist and would explain how WebDriver would deal with them.
driver.find_element_by_link_text("Forgot your password ?")
driver.find_element_by_partial_link_text("Forgot")
Yes, The parameters for find_element_by_link_text() and find_element_by_partial_link_text() are both case-sensitive, meaning that capitalization matters