Answers for "How to find all links in the page"

2

how to find all the links present in a web 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 <WebElement>  list = driver.findElements(By.tagName(a))
Posted by: Guest on December-04-2020
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 "How to find all links in the page"

Browse Popular Code Answers by Language