Skip to content

Instantly share code, notes, and snippets.

@julianeon
Last active August 29, 2015 13:55
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 julianeon/8756934 to your computer and use it in GitHub Desktop.
Save julianeon/8756934 to your computer and use it in GitHub Desktop.
Scraped example using NYTimes.
// Find summary of articles in NYTimes.
var page = require('webpage').create(),
url = 'http://www.nytimes.com/most-popular-blogged';
page.open(url, function (status) {
if (status !== 'success') {
console.log('Unable to access network');
} else {
var results = page.evaluate(function() {
var list = document.querySelectorAll('p.summary'), pizza = [], i;
for (i = 0; i < list.length; i++) {
pizza.push(list[i].innerText);
}
return pizza;
});
console.log(results.join('\n'));
}
phantom.exit();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment