var page = require('webpage').create();
page.onInitialized = function() {
console.log("page.onInitialized");
};
page.onLoadFinished = function() {
// page.evaluate выполняет код в контексте загруженной страницы
var children = page.evaluate(function() {
return document.body.children;
});
console.log(children.length);
};
page.open('https://google.com');
http://phantomjs.org/quick-start.html