AutoJs 刷金币
程序员文章站
2022-07-03 17:49:25
auto();//判断无障碍模式toastLog("启动今日头条极速版");launchApp("今日头条极速版");sleep(2000)var sy = className("android.widget.TextView").text("历史")if(sy.exists() ){ toastLog("进入历史页面"); sy.findOne().parent().click()} while(true){ sleep(3000) //新闻列表滑动 toa......
auto(); //判断无障碍模式
toastLog("启动今日头条极速版");
launchApp("今日头条极速版") ;
sleep(2000)
var sy = className("android.widget.TextView").text("历史")
if(sy.exists() ){
toastLog("进入历史页面");
sy.findOne().parent().click()
}
while (true) {
sleep(3000)
//新闻列表滑动
toastLog("滑动新闻文章列表");
clickFd();
//点击
sleep(1000)
onClick();
//进入
enterOk();
}
function enterOk(){
sleep(3000)
if(!id("aaa").exists()){
backBtn();
}else{
toastLog("开始自动阅读文章");
for(var i=0 ; i<20 ; i++) {
sleep(3000)
//toastLog("上滑操作");
clickFd();
}
//退出
toastLog("休息一下");
sleep(1000 *10)
backBtn();
}
}
function onClick(){
toastLog("进入");
var x = random(480,500);
var y = random(600,630);
click(x,y);
}
function clickFd(){
if(random(0,1)){
a()
}else{
b()
}
}
function a (){
var x = random(480,530);
var y = random(520,600);
var xv = random(860,930);
var yv = random(220,260);
swipe(x,xv,y,yv, 800);
}
function b (){
var x = random(480,530);
var y = random(326,380);
var xv = random(860,930);
var yv = random(220,260);
swipe(x,xv,y,yv, 800);
}
function backBtn(){
toastLog("退出");
if( id("a44").exists()){
id("a44").findOne().click();
}else if(id("m").exists()){
id("m").findOne().click()
}else if(id("z7").exists()){
id("z7").findOne().click()
}
}
本文地址:https://blog.csdn.net/jintaocccq/article/details/107505939