PhantomJS - switchToFrame()



Selects the frame with the name specified, which is also the child of the current frame.

Syntax

Its syntax is as follows −

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

Example

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

It will produce the following output.

Myframe
phantomjs_webpage_module_methods.htm
Advertisements