手机设备/模拟器环境初始化:
python3 -m uiautomator2 init
或者
python -m uiautomator2 init
Weditor控件安装:
pip3 install --pre weditor
运行Weditor:
python3 -m weditor
或者
python -m weditor
运行后会自动打开http://localhost:17310/#

右侧coding
# coding: utf-8
#
import uiautomator2 as u2
d = u2.connect()
d.xpath("//*[@text='中超']").click()
ios 的话需要检查是否安装好WebDriverAgent
启动 WDA
找到APP列表里面的WebDriverAgentRunner-Runner
tidevice wdaproxy -B com.zhongxin.WebDriverAgentRunner490336534.xctrunner --port 8200
访问http://localhost:8200/status查看是否成功
import wda
d = wda.Client('http://localhost:8200')
d.xpath('//*[@label="健康记录仪"]').click()
378

被折叠的 条评论
为什么被折叠?



