使用phantomjs执行js文件

前提: 已下载phantomjs
需求:利用phantomjs发送js请求,获取请求页面截图

// 创建一个phantom.js文件
// 发送get请求,并截图
var page = require('webpage').create();
page.open('https://www.baidu.com/s?rtt=1&bsst=1&cl=2&tn=news&word=phantom+open', function() {
  page.render('baidu.png');
  phantom.exit();
});

// 发送post请求并截图
// var webPage = require('webpage');
// var page = webPage.create();
// var postBody = '';
//
// page.open('http://www.google.com/', 'GET', postBody, function(status) {
//
//   console.log('Status: ' + status);
//   page.render('baidu.png');
//   phantom.exit();
//
//
// });

执行:phantomjs.exe phantom.js
因为本人使用的是python语言,所以使用os.system(“phantomjs.exe phantom.js”)来调用

你可能感兴趣的:(知识累积)