javascript retrieve all page urls of blog posts code example
Example 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 list = driver.findElements(By.tagName(a))
Example 2: extract all link with javascript
$(document).ready(function(){
$('a').each(function(){
console.log($(this).attr('href'));
});
});
Example 3: javascript retrieve all page urls of blog posts
var x = document.querySelectorAll("a");var myarray = []for (var i=0; i'+ myarray[i][0] + ' | '+myarray[i][1]+' | '; }; var w = window.open("");w.document.write(table); }make_table()