-
Alex Ellis authored
Signed-off-by:
Alex Ellis <alexellis2@gmail.com>
Alex Ellis authoredSigned-off-by:
Alex Ellis <alexellis2@gmail.com>
cnn.js 232 B
var webPage = require('webpage');
var page = webPage.create();
page.open('https://www.cnn.com/', function(status) {
console.log('Status: ' + status);
console.log(page.title);
// Do other things here...
phantom.exit();
});