赞
踩
最近在玩一个手游,一个功能操作十分繁琐耗时,所以想用py写一个手游脚本。
#1.连接模拟器 import os # 第一种方法 os.system('adb devices') # 第二种方法 os.popen('adb devices') #2.点击 #order如果只有一个模拟器可不填写,如果存在多个模拟器则需要填写模拟器的ip order=127.0.0.1:5555 p=(100,100) str=f'adb -s { order} shell input tap { p[0]} { p[1]}' os.system(str) #3.滑动 #从p1滑动到p2,滑动时间time毫秒 p1=(100,100),p2=(200,200) time=500 str=f'adb -s { order} shell input swipe { p1[0]} { p1[
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。