文档
app - 应用 | Auto.js Pro文档 (autojs.cc)
autojs apk下载
我用夸克网盘分享了「autojs-apk」,点击链接即可保存。打开「夸克APP」,无需下载在线播放视频,畅享原画5倍速,支持电视投屏。
链接:https://pan.quark.cn/s/96c2e5f03cff
安装准备 vscode 安装扩展Auto.js-Autox.js-VSCodeExt
app打开权限,悬浮窗,无障碍模式,连接电脑ip
基础代码-案例抖音自动刷视频
// 弹窗
// toast('Hello, Auto.js');
auto();
// 根据名称打开app
app.launchApp("抖音商城");
// 发送邮件
// app.sendEmail({
// email:["385288421@qq.com"],
// subject:"澳门新葡京官方网址,众多内幕消息透明公布"
// })
sleep(5000);
click(291,2091,357,2135);
while(true){
sleep(getRandomInt(10000,20000));
x = getRandomInt(400,500)
y = getRandomInt(1500,1800)
y2 = getRandomInt(500,600)
swipe(x,y,x,y2,"500");
}
function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.round(Math.random() * (max - min) + min);
}