Created
January 15, 2019 11:09
-
-
Save TummanapallyAnuraag/2d0008a2f147d69fdd73153f974857ac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Navigate to a Google Scholar page | |
var rows = document.getElementsByClassName("gsc_a_tr") | |
for (index=0;index<rows.length;index++){ | |
title = rows[index].getElementsByClassName("gsc_a_at")[0].innerHTML; | |
year = rows[index].getElementsByClassName("gsc_a_h")[0].innerHTML; | |
authors = rows[index].getElementsByClassName("gs_gray")[0].innerHTML; | |
journal = rows[index].getElementsByClassName("gs_gray")[1].innerHTML; | |
console.log(index+','+title+','+year+','+authors+','+journal); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment