APP 元素定位总结未完待补充

背景

个人记录,团队分享使用,好记性不如烂笔头~

定位工具

推荐使用顺序:weditor > uiautomatorviewer > Appium inspector

三种定位工具

  • Python uiautomator2 中的 weditor
  • Android SDK 自带的 uiautomatorviewer
  • Appium inspector

三种工具异同点

  • Appium inspector 需要配置启动参数,相对较复杂些;uiautomatorviewer最方便;
  • Appium inspector 不能直接定位手机打开的应用,需要重新启动(比如:钉钉每次都要重新登录);uiautomatorviewerweditor不需要,可直接定位;
  • uiautomatorviewer原生不支持 xPath 定位,可二次开发支持;Appium inspectorweditor支持;

多种定位工具交替使用时遇到的问题

  1. uiautomatorviewer 定位时,手机上需要关闭 Appium 的io.appium.uiautomator2.server服务以及 ATX 的 UIAutomator服务;
  2. Appium 与 Python uiautomator2 同时使用时需要注意,Appium inspector 与 ATX 的 UIAutomator服务也会存在冲突;
  3. Appium inspector 启动失败报错:An unknown server-side error occurred while processing the command. Original error: Failed to launch Appium Settings app: Condition unmet after 5001 ms. Timing out.),一种原因是Appium Settings在手机上被卸载了,未卸载干净造成的,解决方法:adb uninstall io.appium.settings重新连接即可(io.appium.uiautomator2.server同理也可能出现)。

定位技巧

定位方式推荐顺序:

  1. 优先使用resourceId定位方式;
  2. 其次采用textdescriptionclassName、相对定位(uiautomator2支持)、组合定位等;
  3. 最后采用xPath定位,结合textdescription等缩短 xPath 长度;
  4. 无法识别的元素使用坐标定位方式(需要考虑不同分辨率,按照比例封装工具方法)。

相关文章

前言:appium可以说是app最火的一个自动化框架,它的主要优势...
(原文:https://www.cnblogs.com/fancy0158/p/10047906.htm...
一Appium介绍1.1含义开源,跨平台,多语言支持的移动应用自动...
前言:Appium是一个自动化测试开源工具,支持iOS平台和Andro...
转:https://blog.csdn.net/Tigerdong1/article/details/801...
(原文:https://www.cnblogs.com/fancy0158/p/10056418.htm...