美文网首页Appium学习
Appium - Android的 几种控件定位方法

Appium - Android的 几种控件定位方法

作者: R_zb | 来源:发表于2019-10-13 08:22 被阅读0次

一、工具使用(UIAutomatorViewer)

UIAutomatorViewer工具位于Android SDK目录(./Android SDK/tools/bin/)下,是Android sdk自带的工具,界面简洁,使用方便,对于我们的自动化测试来说是一个很好的辅助工具。

./Android SDK/tools/bin/.png
UIAutomatorViewer.png

二、控件定位方式(以“设置-蓝牙”为例)

控件定位.png
  • 1、id定位
    该控件的对应ID属性为:“resoerce-id” :“com.android.settings:id/title”
    使用方法:bluetooch = driver.find_element_by_id("com.android.settings:id/title")

  • 2、classname定位
    该控件对应的classname属性为:“class”:“android.widget.TextView”
    使用方法:bluetooch = driver.find_element_by_class_name("android.widget.TextView")

  • 3、XPath定位
    使用方法:driver.find_element_by_xpath('//*[@text="蓝牙"]')

  • 4、AccessibilityId定位(以手机QQ登录界面为例)
    该控件对应的AccessibilityId属性为:“content-desc”:"请输入QQ号码或手机或邮箱"
    使用方法:driver.find_element_by_accessibility_id("请输入QQ号码或手机或邮箱")


    AccessibilityId定位.png
  • 5、AndroidUiAutomator定位
    AndroidUiAutomator属于Appium的拓展定位方法,可以选择id、name、classname作为传入的字符串,但是要保证该种定位方式的唯一性
    使用方法:
    driver.find_element_by_android_uiautomator("new UiSelector().text("蓝牙")")
    driver.find_element_by_android_uiautomator("new UiSelector().description("请输入QQ号码或手机或邮箱")")
    driver.find_element_by_android_uiautomator("new UiSelector().resourceId("com.android.settings:id/title")")


注:text为text属性,description为content-desc属性,resourceId为resoerce-id属性


欢迎评论补充


Blog:

相关文章

网友评论

    本文标题:Appium - Android的 几种控件定位方法

    本文链接:https://www.haomeiwen.com/subject/akkapctx.html