PhantomJS - canGoForward Property
The canGoForward property returns true if there is a next page in the navigation history; if not, false.
Syntax
Its syntax is as follows −
page.canGoForward;
Example
Let us look at an example of the canGoForward property.
var wpage = require('webpage').create();
console.log(wpage.canGoForward);
phantom.exit();
The above program generates the following output.
False
phantomjs_webpage_module_properties.htm
Advertisements