【愚公系列】2021年12月 python爬虫自动化-WEditor自动化APP测试工具安装和使用

文章目录


一、WEditor是什么?

WEditor是基于python的查看APP元素的工具,能够提供辅助编写脚本,定位元素,调试代码等功能。

二、使用步骤

1.安装

pip install weditor

【愚公系列】2021年12月 python爬虫自动化-WEditor自动化APP测试工具安装和使用

2.运行

python -m weditor

会自动打开如下网页:http://localhost:17310
【愚公系列】2021年12月 python爬虫自动化-WEditor自动化APP测试工具安装和使用

3.安卓设备连接

window11下载adb设备:https://adb.clockworkmod.com/

ADB 全称 Android Debug Bridge,译作Android 调试桥。 ADB是一种功能多样的命令行工具,可让您与设备进行通信。ADB 命令可用于执行各种设备操作(例如安装和调试应用),并提供对 Unix shell(可用来在设备上运行各种命令)的访问权限。它是一种客户端-服务器程序,对我们以后进行安卓开发与设备系统安装方面有极大的用处。

安装成功后
【愚公系列】2021年12月 python爬虫自动化-WEditor自动化APP测试工具安装和使用
发现并没找到设备
打开手机的usb调试功能在输入如下命令

adb kill-server
adb start-server
adb devices

【愚公系列】2021年12月 python爬虫自动化-WEditor自动化APP测试工具安装和使用
发现设备输入设备号:nbovt8pbdqr86pon进行连接,dump hierarchy 刷新页面
【愚公系列】2021年12月 python爬虫自动化-WEditor自动化APP测试工具安装和使用
python脚本进行测试

import uiautomator2 as u2

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

【愚公系列】2021年12月 python爬虫自动化-WEditor自动化APP测试工具安装和使用


总结

连接成功后用法和uiautomatorviewer差不多

上一篇:移动端测试面试


下一篇:Tapdata Cloud 版本上新!新增ClickHouse,ADB MySQL等5个数据源支持