Answers for "search all links on a website"

0

How to find all links in the page

All the link TagName should be "a". 
I locate the webelements starts with tagname "a". 
I also use driver.findElements instead of driver.findElement since the 
list of webelements will return.
List list = driver.findElements(By.tagName(“a”));
Posted by: Guest on May-29-2021

Code answers related to "search all links on a website"

Browse Popular Code Answers by Language