Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var page = require('webpage').create();
- page.open(
- 'code.html',
- function () {
- console.log(
- page.evaluate(
- function () {
- return document.getElementsByTagName('body')[0]
- .textContent;
- }
- )
- );
- phantom.exit();
- }
- );
Advertisement
Add Comment
Please, Sign In to add comment