最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Python+uiautomator2实现自动刷抖音视频功能代码示例
时间:2022-06-25 02:03:43 编辑:袖梨 来源:一聚教程网
本篇文章小编给大家分享一下Python+uiautomator2实现自动刷抖音视频功能代码示例,文章代码介绍的很详细,小编觉得挺不错的,现在分享给大家供大家参考,有需要的小伙伴们可以来看看。
工具准备
Python3.7.7
adb(Android debug bridge)
uiautomatorviewer
安装adb
官网地址:https://developer.android.google.cn/studio/command-pne/adb
下载好解压后设置环境变量即可
安装uiautomatorviewer
参照此篇文章:https://www.cnblogs.com/corsacsherry/p/10609339.html
调试工具
手机通过USB连接到电脑上开启开发者选项和USB调试
在电脑上通过adb devices -l命令查看已连接的设备
打开UIAutomatorViewer连接手机即可
Python安装uiautomator2
pip install --pre -U uiautomator2
给设备安装atx-agent
python -m uiautomator2 init
注意打开设备,允许uiautomator.apk的安装
参考连接:https://blog.csdn.net/plychoz/article/details/80231550
编写主程序
定位抖音位置
几种定位方式如下:
text:a(text=“抖音极速版”).cpck()resourceid:a(resourceId=“com.smartisanos.clock:id/text_stopwatch”).cpck()classname:a(className=“android.widget.TextView”).cpck()description :a(description="…").cpck()
import uiautomator2 as d import time def douyin(): #通过usb连接 a=d.connect_usb('3d51a18c') # 打开抖音 a(text="抖音极速版").click() while True: time.sleep(10) # 滑动视频 a.swipe(313,1370,313,110) if __name__=='__main__': douyin()
点击运行即可
相关文章
- “十月朝,糍粑碌碌烧”说的是小雪时节的哪一项习俗 蚂蚁庄园11月22日答案早知道 11-25
- 以闪亮之名宠物礼包怎么样 11-25
- 崩坏星穹铁道星期日用什么光锥 11-25
- 崩坏星穹铁道星期日用什么光锥 崩铁星期日光锥推荐搭配介绍 11-25
- 崩坏星穹铁道星期日技能机制怎么样 崩铁星期日技能机制介绍 11-25
- 崩坏星穹铁道星期日遗器怎么选择 崩铁星期日遗器推荐搭配介绍 11-25