uiautomator2安装

注意:Python版本一定要低于3.10,作者用的是3.8。版本高于3.10在安装atx-agent时会报错
uiautomator2安装_第1张图片

1.安装过程

1.1.python的uiautomator2库

pip install uiautomator2

1.2.在手机端安装atx-agent

先保证adb devices能看到真机或模拟器,再执行下面命令。

python -m uiautomator2 init

过程中可能会提示缺少urllib3,用下面命令urllib3安装模块即可

pip install urllib3

1.3.安装weditor

weditor是基于浏览器的UI元素查看器

pip install weditor

weditor.exe会默认安装到C:\Users\Administrator\AppData\Roaming\Python\Python38\Scripts路径下,为方便后期使用可配置该路径为环境变量。或者后面直接用python -m weditor命令启动
在这里插入图片描述

2.问题记录

2.1.安装weditor时总是会提示UnicodeDecodeError

uiautomator2安装_第2张图片
解决办法就是在pip install weditor之前设置下环境变量

set PYTHONUTF8=1

你可能感兴趣的:(uiautomator2,python)