Skip to content

Instantly share code, notes, and snippets.

@davo
Created January 15, 2019 12:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davo/39cc559df227c061b01151db2bcf8a85 to your computer and use it in GitHub Desktop.
Save davo/39cc559df227c061b01151db2bcf8a85 to your computer and use it in GitHub Desktop.
Scrapping from the DevTools
copy(
Array.from(document.querySelectorAll('p')).map(p => {
const t = p.innerText
return {
t
}
})
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment