Skip to content

Instantly share code, notes, and snippets.

@kevinwucodes
Last active October 19, 2017 19:45
Show Gist options
  • Select an option

  • Save kevinwucodes/484e10fee034418890939759ce98fdcd to your computer and use it in GitHub Desktop.

Select an option

Save kevinwucodes/484e10fee034418890939759ce98fdcd to your computer and use it in GitHub Desktop.
puppeteer v0.12 experiments

page.evaluate

const a = await page.evaluate(selector => document.querySelector(selector).textContent, WELCOMETAG_SELECTOR)

page.$eval

const b = await page.$eval(WELCOMETAG_SELECTOR, stuff => stuff.textContent)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment