微视这几天在做活动持续到何时我就不知道了。
代码毫无难度大家复制就可以执行。
代码如下:
auto.waitFor(); let see_count = 600;// rawInput('请输入滑动次数','1000'); app.launchApp('微视'); sleep(6000); console.show(); //开启日志(悬浮窗权限) youngIKnow(); for (var i = 1; i < see_count; i++) { toastLog("微视滑动" + i + '次' + "总计:" + see_count + "次") moshiCloseHongBao(); randomUpSildeScreen(); randomDownSildeScreen(); randomFollow(); randomHeart(); slideScreenDown(device.width / 2, device.height - (device.height * 0.15), device.width / 2, device.height * 0.05, 300); } //关闭当前程序 home(); function youngIKnow() { if (className("android.widget.Button").text("知道了").exists()) { className("android.widget.ImageView").text("知道了").findOnce().click(); } } /** * 屏幕向下滑动并延迟8至12秒 */ function slideScreenDown(startX, startY, endX, endY, pressTime) { swipe(startX, startY, endX, endY, pressTime); let delayTime = random(8000, 12000); sleep(delayTime); } function moshiCloseHongBao() { if (className("android.widget.ImageView").id("img_close").exists()) { className("android.widget.ImageView").id("img_close").findOnce().click(); } } /** * 随机上滑(防止被判定是机器)上滑后停留时间至少是10S,造成假象表示是对内容感兴趣 * 点赞和关注先不搞。 */ function randomUpSildeScreen() { let randomIndex = random(1, 40); if (randomIndex == 1) { console.log("随机上滑被执行了"); pressTime = random(200, 500); swipe(device.width / 2, 500, device.width / 2, device.height - 200, 700); delayTime = random(10000, 15000); sleep(delayTime); } } /** * 连续下滑对上一个无兴趣 * 其实得和上滑做个排他,既然无兴趣不要在上滑 */ function randomDownSildeScreen() { let randomIndex = random(1, 50); if (randomIndex == 1) { console.log("连续下滑被执行了"); swipe(device.width / 2, device.height - 200, device.width / 2, 500, 700); sleep(2000); swipe(device.width / 2, device.height - 200, device.width / 2, 500, 700); delayTime = random(8000, 10000); sleep(delayTime); } } /**随机点赞并休息一秒 */ function randomHeart() { index = random(1, 50); if (index == 6) { var target = id('a4l').findOnce(); if (target == null) { return; } else { target.click(); sleep(1000); console.log("随机点赞并休息一秒"); } } } /** * 随机关注 */ function randomFollow() { index = random(1, 100); if (index == 66) { var target = id('a4j').findOnce(); if (target == null) { return; } else { target.click(); sleep(1000); console.log("随机关注并休息一秒"); } } }