PhantomJS - setContent()
The setcontent method will change the page content of the specified URL with the contents specified.
Syntax
Its syntax is as follows −
var wpage = require('webpage').create();
wpage.setContent(content, pageurl);
Example
The following example shows the use of setContent() method.
var wpage = require('webpage').create();
var Content = '<html><body><div>Test div</div></body></html>';
var pageurl = 'http://localhost/tasks/c.html';
wpage.setContent(Content, pageurl);
wpage.onLoadFinished = function(status) {
wpage.render('newtest.png');
phantom.exit();
};
Output newtest.png
The above program generates the following output.
phantomjs_webpage_module_methods.htm
Advertisements