[ad_1]
Using Selenium and the Chrome Driver I do:
links = browser.find_elements_by_partial_link_text('##')
matches about 160 links.
If I try,
for link in links:
print link.text
with it I get the text of all the links:
##1
##2
...
##160
The links are like this:
<a href="https://stackoverflow.com/questions/12445612/1.html">##1</a>
<a href="2.html">##2</a>
...
<a href="160.html">##160</a>
How can I get the href
attribute of all the links found?
[ad_2]