Skip to content

Instantly share code, notes, and snippets.

@RocAlayo
Created August 14, 2017 17:55
Show Gist options
  • Save RocAlayo/9d2077dbd416dc0150bca35cb55d278a to your computer and use it in GitHub Desktop.
Save RocAlayo/9d2077dbd416dc0150bca35cb55d278a to your computer and use it in GitHub Desktop.
Array.from(dom.window.document.querySelectorAll("a")).forEach((a) => {
const title = a.textContent;
const link = a.href;
if(link.includes('https://lse.rl.talis.com/lists/')) {
console.log(link, title);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment