PhantomJS - stop()
The stop() method helps to stop the loading of a page.
Syntax
Its syntax is as follows −
var wpage = require('webpage').create();
wpage.stop();
Example
var wpage = require('webpage').create();
wpage.onLoadStarted = function() {
wpage.stop();
}
wpage.open('http://localhost/tasks/wopen2.html', function(status) {
console.log(status);
phantom.exit();
});
The above program generates the following output.
Fail
In the above example, we are using the onLoadStarted event to stop the page from loading. We get status as failed, since the page was stopped.
phantomjs_webpage_module_methods.htm
Advertisements