Autojs4.1.0实战教程---火山极速版自动评论

简介: Autojs4.1.0实战教程---火山极速版自动评论


火山和今日头条都是字节跳动的,虽然给的不多但是一个字稳。推荐指数4颗星。

 

之前写过抖音的,虽然费劲不少也对后继写的提到帮助。今天写火山的比较顺利,分享给大家。

核心就是huoShanAutoComment方法。

————————————————

auto.waitFor();
app.launchApp('火山极速版');
sleep(10000);
var CommentKeyWord = [
    '我是抖音小助手关注了你你要关注我哦!',
    '山高路远坑深,大军纵横驰奔,谁敢横刀立马?惟有点赞加关注大军!',
    '我的未来不是梦我相信你也是',
    '身同感受',
];
console.show(); //开启日志(悬浮窗权限)
console.info("火山极速版");
huoShanAutoComment();
home();//关闭当前程序
/**
 * 自动评论
 */
function huoShanAutoComment(){
    let comment = CommentKeyWord[Math.floor(Math.random() * CommentKeyWord.length)];
    if(className("android.widget.RelativeLayout").desc("评论按钮").exists()){
        let b=className("android.widget.RelativeLayout").desc("评论按钮").findOnce().bounds();
        let clickResult= click(b.centerX(), b.centerY());
        if(clickResult){
            sleep(3000);
            setText(0,comment);
            sleep(3000);
            if (className("android.widget.TextView").text("发送").exists()) {
                toastLog("开启自动评论");
                if(className("android.widget.TextView").text("发送").findOnce().click()){
                    toastLog("自动评论成功");
                    back();
                }
            }
        }
    }
}

 

目录
相关文章
|
6月前
|
缓存
Autojs4.1.0实战教程---快手极速版清理缓存
Autojs4.1.0实战教程---快手极速版清理缓存
231 1
|
6月前
AutoJS4.1.0实战教程---快刷短视频
AutoJS4.1.0实战教程---快刷短视频
127 1
|
6月前
|
缓存
Autojs4.1.0实战教程---彩蛋视频功能合集
Autojs4.1.0实战教程---彩蛋视频功能合集
74 0
|
6月前
AutoJS4.1.0实战教程 ---猫扑运动
AutoJS4.1.0实战教程 ---猫扑运动
56 0
|
6月前
AutoJS4.1.0实战教程 ---彩蛋视频自动答复
AutoJS4.1.0实战教程 ---彩蛋视频自动答复
63 0
|
6月前
AutoJs4.1.0实战---部局范围次分析(带图)
AutoJs4.1.0实战---部局范围次分析(带图)
107 0
|
6月前
AutoJS4.1.0实战教程 ---百度极速版
AutoJS4.1.0实战教程 ---百度极速版
136 0
|
6月前
Autojs4.1.0实战教程---抖音极速版自动评论
Autojs4.1.0实战教程---抖音极速版自动评论
207 1
|
6月前
AutoJS4.1.0实战教程---火山极速版
AutoJS4.1.0实战教程---火山极速版
61 0
|
6月前
|
缓存
Autojs4.1.0实战教程---火山极速版清理缓存
Autojs4.1.0实战教程---火山极速版清理缓存
58 0