i want to print all the main module links ...but i was getting all the links printed if take the frame and then extarct all the links using tag "a". please correct me..
List All_Module_Links=driver.findElements(By.xpath("//*[@id='top-menu']"));
WebElement modules_box = All_Module_Links.get(0);
List links =modules_box.findElements(By.tagName("a"));
System.out.println("Total links are : "+links.size());
for(int i=0;i {
System.out.println(links.get(i).getText());
}![enter image description here][1]