Answers for "all links in web page"

1

all links in 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

Code answers related to "all links in web page"

Browse Popular Code Answers by Language