Skip to content

Instantly share code, notes, and snippets.

@sysnucleus
Created April 5, 2021 09:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sysnucleus/f18b18b9af04a2f908b0e504e46e22bd to your computer and use it in GitHub Desktop.
Save sysnucleus/f18b18b9af04a2f908b0e504e46e22bd to your computer and use it in GitHub Desktop.
Expand Tripadvisor reviews 'Read More' link..
els = document.getElementsByTagName('span');
for (var i = els.length - 1; i >= 0; i--) {
if(els[i].innerText === 'Read more') {
els[i].click();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment