PhantomJS - onInitialized()



This callback is invoked when the page is called and before it is loaded.

Syntax

Its syntax is as follows −

page.onInitialized = function() {} 

Example

var wpage = require('webpage').create(); 
wpage.onInitialized = function() { 
   console.log('File is initialized');  
} 
wpage.open("http://localhost/tasks/file.html", function(status) { 
   console.log(status);  
}); 

The above program generates the following output.

Success
File is initialized
phantomjs_webpage_module_events_callbacks.htm
Advertisements