PhantomJS - switchToParentFrame()



It takes the parent frame of the current child frame.

Syntax

Its syntax is as follows −

var wpage = require('webpage').create(); 
wpage.switchToParentFrame(); 

Example

var page = require('webpage').create(); 
page.open('http://localhost/tasks/frames.html', function(status) { 
   page.switchToParentFrame(); 
   console.log(page.frameName); 
}); 

The above program generates the following output.

page2
phantomjs_webpage_module_methods.htm
Advertisements