Reputation: 3081
I have a link which is automaticaly generated :
<a href="LINK">Download</a>
I want selenium to click on Download whatever the LINK is.
LINK
Upvotes: 0
Views: 114
driver.find_element_by_link_text('Download').click()
Upvotes: 3