下载Autojs+脚本
auto.waitFor();
app.launchApp("抖音极速版")
sleep(8000);
i = 1;
while (true) {
toast("滑动" + i + '次')
WidthOne = random(300, 800);
HeightOne = random(1600, 1800);
WidthTwo = random(300, 800);
HeightTwo = random(500, 700);
timeGo = random(250, 600);
timeNext = random(4000, 7000);
swipe(WidthOne, HeightOne, WidthTwo, HeightTwo, timeGo);
sleep(timeNext);
i++;
}