影刀RPA手机自动化
处理手机ui树。手机UI树就是一个xml文档。
通过界面的获取手机UI树功能得到xml
再python模块中自定义一个函数,将xml传入进行解析
解析用lxml库的 etree.fromstring(source.encode())
xpath示例:xpath('//android.widget.TextView[@resource-id="com.tencent.mobileqq:id/yha"]')
获取元素文本示例:i.attrib['text']
处理手机ui树。手机UI树就是一个xml文档。
通过界面的获取手机UI树功能得到xml
再python模块中自定义一个函数,将xml传入进行解析
解析用lxml库的 etree.fromstring(source.encode())
xpath示例:xpath('//android.widget.TextView[@resource-id="com.tencent.mobileqq:id/yha"]')
获取元素文本示例:i.attrib['text']