PhantomJS - go()



This method allows you to navigate with the pages. If you want the next/previous page, it is done as follows.

wpage.go(1);     // next page 
wpage.go(-1);   // previous page

Syntax

Its syntax is as follows −

wpage.go(index) 

Example

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

The above program generates the following output.

False
phantomjs_webpage_module_methods.htm
Advertisements