博客列表 >使用phantom实现百度用户自动签到 武汉

使用phantom实现百度用户自动签到 武汉

php开发大牛
php开发大牛原创
2018年04月18日 17:17:37648浏览

CasperJS是一个开源的导航脚本处理和测试工具,基于PhantomJS(前端自动化测试工具)编写。CasperJS简化了完整的导航场景的过程定义,提供了用于完成常见任务的实用的高级函数、方法和语法。

用于测试 Web 应用功能,Phantom JS是一个服务器端的 JavaScript API 的 WebKit。其支持各种Web标准: DOM 处理, CSS 选择器, JSON, Canvas, 和 SVG。

使用phantom已实现百度用户自动签到,贴吧自动发帖,第一次发送成功,第二次发现需要输入验证码,后就放弃了。自动签到还是比较顺利,代码如下

var casper = require('casper').create();
var url='http://zhidao.baidu.com/ihome';
var fs = require('fs');

if (casper.cli.args.length !== 1){
   casper.echo('qiandao.js argument error').exit(2);
   phantom.exit(1);
}

var uname = casper.cli.args[0];

var cookie_file = '/root/test/'+uname+'.cookie';

var data = fs.read(cookie_file);

phantom.cookies = JSON.parse(data);

casper.start(url, function () {
   this.capture(uname+"qiandao1.png");
   this.echo(uname+"start11....");
});

casper.then(function () {
   if(this.exists(".go-sign-in")){
       var tmp = this.getElementInfo('.go-sign-in');
       if(tmp.text!="\n已签到"){
var casper = require('casper').create();
var url='http://zhidao.baidu.com/ihome';
var fs = require('fs');

if (casper.cli.args.length !== 1){
   casper.echo('qiandao.js argument error').exit(2);
   phantom.exit(1);
}

var uname = casper.cli.args[0];

var cookie_file = '/root/test/'+uname+'.cookie';

var data = fs.read(cookie_file);

phantom.cookies = JSON.parse(data);

casper.start(url, function () {
   this.capture(uname+"qiandao1.png");
   this.echo(uname+"start11....");
});

casper.then(function () {
   if(this.exists(".go-sign-in")){
       var tmp = this.getElementInfo('.go-sign-in');
       if(tmp.text!="\n已签到"){
               console.log(tmp.text);
               this.click(".go-sign-in");
       }else{
               console.log(uname+"已签到");
               phantom.exit(0);//已签到
       }
   }else{
       phantom.exit(1);
   }
   this.echo(uname+".go-sign-in");
   this.wait(100, function () {
       this.capture("9qiandao22.png");
       this.echo(uname+"#sign-in-btn");

   });

});

casper.then(function () {
   if(this.exists("#sign-in-btn")){
       this.click("#sign-in-btn");
   }else{
       phantom.exit(1);
   }
       this.wait(300, function () {
       var cookies = JSON.stringify(phantom.cookies);
       fs.write(cookie_file, cookies, 644);
       this.capture(uname+"qiandao23.png");
   });
});

casper.run();


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议