how to fetch data of all the links in discover browser code example
Example: 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 list = driver.findElements(By.tagName(a))