本文仅作为技术学习研究使用,环境基于MacOS 10.15.7,Windows同学可做参考

1.准备

1.安卓设备(本例使用小米5S)
2.adb
3.Python3
4.UiAutomator2
5.WEditor

2.工具安装

2.1 adb 安装
2.2 Python3 安装
2.3 UiAutomator2 安装

pip3 install -U uiautomator2

2.4 WEditor 安装

pip3 install -U weditor

3.开始作业

3.1 连接设备
记得开启USB调试:允许通过USB安装应用允许通过USB调试修改权限或模拟点击这2个很重要,截图为小米5s参考,其他机型可自行度娘
image.png


打开终端执行命令

adb devices

image.png


3.2 安装包含httprpc服务的apk到手机
这一步非必须,uiautomator2 v1.3.0之后的版本,当运行python代码u2.connect()时就会自动推送这些文件

python3 -m uiautomator2 init

3.3 在Python交互式编程模式执行以下代码,打印设备信息

import uiautomator2 as u2

d = u2.connect()
print(d.info)

image.png


3.4 启动WEditor
在终端执行一下命令(启动成功后如下图)

weditor

weditor --shortcut  #Only windows

image.png

代码自行丰富,有意想不到的收获噢

感谢:_凌浩雨: Android 自动化测试(Python)

END~~~


ReEcho
26 声望2 粉丝