appium python中的android uiautomator定位

Posted 行测侠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了appium python中的android uiautomator定位相关的知识,希望对你有一定的参考价值。

text定位:
driver.find_element_by_android_uiautomator(‘new UiSelector().text("请输入手机号")‘)

#模糊定位
driver.find_element_by_android_uiautomator(‘new UiSelector().textContains("请输入")‘)

resourceID定位:
driver.find_element_by_android_uiautomator(‘new UiSelector().resourceId("cn.com.open.mooc:id/et_phone_edit")‘)

className定位:
driver.find_element_by_android_uiautomator(‘new UiSelector().className("android.widget.EditText")‘)

index 定位:
driver.find_element_by_android_uiautomator(‘new UiSelector().index(1)‘)

className + index 方式:
driver.find_element_by_android_uiautomator(
‘new UiSelector().className("%s").childSelector(new UiSelector().index("%d"))‘)

伪xpath方法定位:

#通过同级元素定位同级元素
driver.find_element_by_android_uiautomator(‘new UiSelector().text("Custom View").fromParent(new UiSelector().text("Accessibility Service"))‘).click() 

#通过父级元素定位子集元素
driver.find_element_by_android_uiautomator(‘new UiSelector().className("android.widget.ListView").childSelector(new UiSelector().text("Custom View"))‘).click() 技术分享图片










以上是关于appium python中的android uiautomator定位的主要内容,如果未能解决你的问题,请参考以下文章

Appium-python-UI自动化之元素定位uiautomatorviewer

(appium+python)UI自动化_10_adb常用命令

基于python+appium通过图片对比来做的UI自动化

appium python中的android uiautomator定位

在 appium 中启动检查器后不显示 android 的 UI 内容

软件测试进阶之自动化测试——python+appium实例