Appium--定位方式

Posted 冒泡泡de可乐

tags:

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

1、ID

   id是resource-id属性 有可能重复,如果appium-desktop显示可用id进行定位,那么不用考虑resource-id是否重复

    el = driver.find_element_by_id(‘com.tencent.mobileqq:id/btn_login‘)

2、CLASS

     class属于重复属性,如果重复可以通过复数取角标方式定位

  el = driver.find_elements_by_class_name(‘android.widget.Button‘)[1]

3、XPATH

    和web的相同,选择唯一属性定位

el = driver.find_element_by_xpath(‘//android.widget.Button[@text="登 录"]‘)

4、accessibility_id

     对应content-desc属性,如果有这个属性,果断用

 el = driver.find_element_by_accessibility_id(‘请输入QQ号码或手机或邮箱‘)

5、by_android_uiautomator

      Android特有的定位方式

 el = driver.find_element_by_android_uiautomator(‘new UiSelector().text("登 录")‘)

以上是关于Appium--定位方式的主要内容,如果未能解决你的问题,请参考以下文章

七 APPIUM Android 定位方式

Appium iOS万能的定位方式--Predicate(iOSNsPredicate)

Appium移动端自动化:Appium-Desktp的使用以及定位元素方式总结

Appium定位方式

Appium定位方式

Appium+python定位方式