I am new to web scraping and I try to open a link with selenium:
On Google Chrome I use inspect on the button I want to open and I get the following information:
<a href="/c#candidates?id=a6b0e325a499&candidateFilter=4af15d8991a8" data-tn-link="true" data-tn-element="view-unread-candidates"><span class="jobs-u-font--bold">(4 awaiting review)</span></a>
I try to get all the links with the same structure and open it so I can access its data
(I have several button with the same structure but different href that I need to see)
Also under Properties
I can see a
for the same button.
However I want to be more precise than just using as I want only those particular links mentioned above:
elements = driver.find_elements_by_tag_name("a")
Can anyone advise ?