Appium-python自动化(四) 定位元素(一)
作者:互联网
常见的定位工具:
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定位:
标签:定位,Appium,python,元素,weditor,自动化,android,id,CSS 来源: https://www.cnblogs.com/xiaoguoba/p/16319304.html