其他分享
首页 > 其他分享> > appium中uiautomator定位方法

appium中uiautomator定位方法

作者:互联网

1.通过AndroidUIAutomator

#这个在运行时,调用的是Android自带的UI框架UiAutomator的Api
#介绍几个简单常用的,text、className、resource-id
#text
#匹配全部text文字
driver.find_element_by_android_uiautomator(‘new UiSelector().text(“请输入包含街道的完整地址”)’)

#包含text文字
driver.find_element_by_android_uiautomator(‘new UiSelector().textContains(“街道的完整地址”)’)

#以text什么开始
driver.find_element_by_android_uiautomator(‘new UiSelector().textStartsWith(“请”)’)

#正则匹配text
driver.find_element_by_android_uiautomator(‘new UiSelector().textMatches("^街道的完整地址.*")’)

#className
driver.find_elements_by_android_uiautomator(‘new UiSelector().className(“android.widget.EditText”)’)

#classNameMatches
driver.find_elements_by_android_uiautomator(‘new UiSelector().classNameMatches("^android.widget.*")’)

#resource-id、resourceIdMatches 类似我们html id 这个可能重复,
driver.find_element_by_android_uiautomator(‘new UiSelector().resourceId(“com.syqy.wecash:id/et_content”)’)

标签:定位,appium,UiSelector,text,uiautomator,new,android,find
来源: https://blog.csdn.net/Mr_know/article/details/109843851