Reputation: 307
I have one button from one LinkedIn page with this code:
<div class="primary-action-button"><a class="primary-action label" href="/requestList?displayProposal=&destID=39959446&creationType=DC&authToken=Yr4_&authType=OUT_OF_NETWORK&trk=vsrp_people_res_pri_act&trkInfo=VSRPsearchId%3A2998448551382744275729%2CVSRPtargetId%3A39959446%2CVSRPcmpt%3Aprimary">Send InMail</a></div>
Is there any way to click on an element just by its href link? Thanks
Upvotes: 24
Views: 69424
Reputation: 2106
The above answer driver.findElement(By.linkText("Send InMail")).click();
is in Java. In python, use find_element_by_link_text
:
driver.find_element_by_link_text('Send InMail').click()
or something like this is sometimes helpful
driver.find_element_by_partial_link_text('Send').click()
Upvotes: 5
Reputation: 20230
Using selenium you could use the following code:
driver.find_element_by_link_text("Send InMail").click()
Upvotes: 22