plainText
plainText
{string}
Read-only. This property stores the content of the web page (main frame) as plain text — no element tags!
See also: page.content
which returns the content with element tags.
Examples
var webPage = require('webpage');
var page = webPage.create();
page.open('http://phantomjs.org', function (status) {
console.log('Stripped down page text:\n' + page.plainText);
phantom.exit();
});