I am trying to do some webscraping via Selenium. My question is very simple: How do you find a link and then how do you click on it? For instance: The following is the HTM
You can use find_element_by_link_text:
For example:
link = driver.find_element_by_link_text('Details')
To Click on it, just call click method:
link.click()