Answers for "python selenium find all href links"

1

selenium python find all links

elems = driver.find_elements_by_xpath("//a[@href]")
for elem in elems:
    print(elem.get_attribute("href"))
Posted by: Guest on June-12-2020
1

get href link selenium python

<p class="sc-eYdvao kvdWiq">
 <a href="https://www.iproperty.com.my/property/setia-eco-park/sale- 
 1653165/">Shah Alam Setia Eco Park, Setia Eco Park
 </a>
</p>
Posted by: Guest on June-02-2021

Python Answers by Framework

Browse Popular Code Answers by Language