PhantomJS - onLoadFinished()



This function is called when the page opened is fully loaded. It has a one argument, which tells whether the loading was a success or a failure.

Syntax

Its syntax is as follows −

wpage.onLoadFinished = function(status) {} 

Example

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

The above program generates the following output.

success 
File is Loaded
phantomjs_webpage_module_events_callbacks.htm
Advertisements