PhantomJS - close()



The close() method is used to close the page and release the memory used. Any of the webpage methods or properties will not work once the close is called.

Syntax

Its syntax is as follows −

wpage.close();

Example

The following example shows how to use the close() method.

var wpage = require('webpage').create(); 
wpage.open('http://localhost/tasks/a.html', function() { 
   console.log("page is opened"); 
   wpage.close();   
   phantom.exit(); 
});

The above program generates the following output.

page is opened
phantomjs_webpage_module_methods.htm
Advertisements