给很多人种草了Python
像博主是直接用在工作中做ASO分析、自动化打包
但大多数朋友都说不知道用在什么地方
学会了爬虫也不知道干嘛?
博主想了许久
秉承“Python自有黄金屋,Python自有颜如玉”的理念
终于想到一个大家可能感兴趣的案例
就是:探探自动右滑
demo适配1080*1920手机
#放开系统死循环限制至一万
import sys
sys.setrecursionlimit(10000)
#引入自动化测试uiautomator用来判断和操作屏幕
from uiautomator import device as d
#计数
i=0
#循环开始
while i<10000:
#判断是否在探探主界面,之前博客说过uiautomator中count的效率会比文档中的demo更高
if d(text='探探 ').count ==0:
#不在,证明你太有魅力已经滑到了匹配页面,点击继续探索的位置
d.click(540,1653)
else:
import random
import time
#在滑动部分生成局部随机数
x1=random.randint(359,459)
x2=random.randint(819,919)
y1=random.randint(509,529)
y2=random.randint(509,529)
steps=random.randint(20,25)
#向右滑动
d.swipe(x1, y1, x2, y2, steps)
i+=1
#无聊每26个停顿2秒,可有可无
if i % 26 ==0:
time.sleep(2)
#打印你滑了多少次
print(i)
大致效果
nice
提示:无限右滑需要VIP(钱!钱!钱!),实测机器人太多,所以就算学会Python你也找不到对象
网友评论