I'm new to Phantomjs.I have tried to load the page using the below code.But the given page is not loading while running this.
console.log('Loading a web page');
var page = require('webpage').create();
var url = 'http://www.phantomjs.org/';
page.open(url, function (status) {
//Page is loaded!
phantom.exit();
});