Answers for "find all links in a table selenium"

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

Code answers related to "find all links in a table selenium"

Python Answers by Framework

Browse Popular Code Answers by Language