PhantomJS - getPage()



This method returns the child page that matches the windowname passed in the getpage function.

Syntax

Its syntax is as follows −

wpage.getPage(windowname)

Example

The following example shows the use of getPage() method.

var wpage = require('webpage').create(); 
wpage.open('http://localhost/tasks/test.html', function(status) { 
   var value = wpage.getPage("window2"); 
   console.log(value); 
   phantom.exit(); 
}); 

The above program generates the following output.

WebPage(name = "WebPage")
phantomjs_webpage_module_methods.htm
Advertisements