phantomjs表单提交,其实就是对DOM就行操作(获取元素),在这里实现了动态传入各种参数

不说了 直接上代码

 var page = require('webpage').create(),
system = require('system'),fname; var hostUrl = system.args[1];
var resId = system.args[2];
var fileName = system.args[3];
console.log("访问地址:"+hostUrl);
console.log("资源名称:"+resId);
console.log("资源路径:"+fileName);
console.log('请稍等,正在提交数据。。。'); page.open(hostUrl, function (stat) {
page.uploadFile('input[name=resFile]', fileName);
page.evaluate(function (resId) {
document.querySelector('input[name=resId]').value = resId;
document.querySelector('input[name=resConf]').value = '{"resVer":"'+new Date().getTime()+'"}';
document.querySelector('form').submit();
},resId);
phantom.exit();
});

这里会出现一个问题,如果上传的资源文件过大,时间过长,就会出现上传失败

所以在这里要通过一个状态来判断是否上传完成,onResourceReceived资源收到后调用后方法

 var page = require('webpage').create(),
system = require('system'),fname; var hostUrl = system.args[1];
var resId = system.args[2];
var fileName = system.args[3];
console.log("访问地址:"+hostUrl);
console.log("资源名称:"+resId);
console.log("资源路径:"+fileName);
console.log('请稍等,正在提交数据。。。'); page.open(hostUrl, function (stat) {
page.uploadFile('input[name=resFile]', fileName);
page.evaluate(function (resId) {
document.querySelector('input[name=resId]').value = resId;
document.querySelector('input[name=resConf]').value = '{"resVer":"'+new Date().getTime()+'"}';
document.querySelector('form').submit();
},resId);
});
page.onResourceReceived = function(response) {
if(response.stage=='end' && response.url.indexOf('.json')>-1){
phantom.exit();
}
};

这里判断了stage状态结束,还有当前地址改变,完成了上传,就能结束当前操作

通过phantomjs实现了前端不能实现的,在测试中效果很明显

05-08 14:53