常见的定位工具:
1)android sdk自带的:uiautomatorviewer
2)appium desktop中的inspect
3)weditor(需要和uiautomator2配合使用,单独用weditor进行定位元素也可以,但是只能进行android原生的定位)
需要注意:在app中DOM对象是没有CSS的所以不能使用CSS定位来进行定位元素
===========================================================================================
1、id定位(对用的是属性:resource-id):driver.find_element(MobileBy.ID, “xxxxxx”)
2、accessibility_id定位(对应的属性是:content-desc):
3、classname定位(对应的就是属性class):不推荐使用这种定位方式,因为找到的元素太多了
3、xapth定位:
原创文章,作者:506227337,如若转载,请注明出处:https://blog.ytso.com/tech/272597.html