今年淘宝天猫双十一自动领猫币活动,又要肝一波,而且今年比往年肝的更厉害了.所以就到处找一些自动代码,然后最后让我在吾爱找到了一个理论匹配所有1080*1920 1080*2340 1080*2160分辨率的手机的自动脚本,直接搬运了过来…
需要软件:Auto.js——Zeno传送门
测试手机 小米9 三星s7 一加五T
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | auto.waitFor(); var height = device.height; var width = device.width; toast("\n设备宽" + width + "\n" + "设备高" + height + "\n" + "手机型号" + device.model + "\n安卓版本" + device.release) if (height == 1920) { //设置脚本坐标点击所适合的屏幕宽高。 setScreenMetrics(1080, 1920); toast("设备高" + height); lingqu() } else if (height == 2340) { setScreenMetrics(1080, 2340); toast("设备高" + height); lingqu() } else if (height == 2160) { setScreenMetrics(1080, 2160); toast("设备高" + height); lingqu(); } function lingqu() { app.launchApp("手机淘宝"); toast("打开淘宝") sleep(6000); click(600, 1235);//进入活动页 sleep(6000); click(547, 1264);//点猫 领金币 // //浏览15秒领金币 sleep(1500); click(911, 1716); sleep(1500); if (text("签到").exists()) { text("签到").findOne().click(); sleep(1600); toast("签到成功") } sleep(1500); while (text("去进店").exists()) { //要支持的动作 toast("存在去进店"); text("去进店").findOne().click(); sleep(2500); swipe(width / 2, height - 600, width / 2, 0, 500); sleep(3500); swipe(width / 2, height - 600, width / 2, 0, 500); sleep(10000); swipe(width / 2, height - 600, width / 2, 0, 500); sleep(9000); back(); sleep(1000); } while (text("去浏览").exists()) { //要支持的动作 toast("存在去浏览"); text("去浏览").findOne().click(); sleep(1500); swipe(width / 2, height - 500, width / 2, 0, 500); sleep(2500); swipe(width / 2, height - 500, width / 2, 0, 500); sleep(10000); swipe(width / 2, height - 500, width / 2, 0, 500); sleep(8000); back(); sleep(1600); } toast("结束"); } |