PhantomJS - onClosing()



This method is called when the window is closed either by using page.close() function or the window.close() function.

Syntax

Its syntax is as follows −

var wpage = require('webpage').create(); 
wpage.onClosing = function(str) {} 

Example

var wpage = require('webpage').create(); 
wpage.onClosing = function(str) { 
   console.log("page is closed"); 
} 
wpage.open('http://localhost/tasks/closing.html', function(status) { 
   console.log(status); 
   wpage.close();   
}); 

The above program generates the following output.

success 
page is closed
phantomjs_webpage_module_events_callbacks.htm
Advertisements