appium元素定位

打印 上一主题 下一主题

主题 926|帖子 926|积分 2780

本章主要介绍几种原生app定位的方法,我们可以进入npm安装目次下找到driver.js文件打开可以
  看到如下几种定位方法,我的地点是(C:\Users\username\AppData\Roaming\npm\node_modules
  \appium\node_modules\appium-android-driver\lib),npm版本为8.1.2。
              
           1.id

  

  • 实例
  1. import time
  2. from appium import webdriver
  3. from appium.webdriver.common.appiumby import AppiumBy
  4. desired_cap = {
  5.     "platformName": "Android",  # 手机系统
  6.     "platformVersion": "11",  # 手机系统版本
  7.     "deviceName": 'xxxxx',  # 连接的设备
  8.     "automationName": "UiAutomator2",  # 自动化测试框架
  9.     "appPackage": "xxxxx",  # app包名
  10.     "appActivity": "xxxxxx",  # app的启动页面
  11.     "autoGrantPermissions": "true",  # 默认允许app获取相关权限
  12.     "noReset": True  # 保留登录模式
  13. }
  14. driver = webdriver.Remote(command_executor="http://127.0.0.1:4723/wd/hub", desired_capabilities=desired_cap)
  15. driver.implicitly_wait(10)  # 设置元素等待
  16. driver.find_element(AppiumBy.ID, "tv.danmaku.bili:id/agree").click()  # id定位resource-id
复制代码
id的值与uiautomatorviewer中resource-id的值一致。resource-id在元素app中并不是唯一的,以是使用要视环境而定。
              
           2.xpath

  xpath可根据uiautomatorviewer中node detail的属性和值举行定位
              
           1)单条件定位
  1. driver.find_element(AppiumBy.XPATH, '//*[@text="同意并继续"]').click()
复制代码
2)多条件定位
  1. driver.find_element(AppiumBy.XPATH, '//*[@text="同意并继续" and @resource-id="tv.danmaku.bili:id/agree"]').click()
复制代码
多个条件之间用and连接
  3.ANDROID_UIAUTOMATOR

  1)根据文本(text)值举行定位
  精准匹配
  1. import time
  2. from appium import webdriver
  3. from appium.webdriver.common.appiumby import AppiumBy
  4. desired_cap = {
  5.     "platformName": "Android",  # 手机系统"platformVersion": "11",  # 手机系统版本"deviceName": 'xxxxx',  # 连接的设备"automationName": "UiAutomator2",  # 自动化测试框架"appPackage": "xxxxx",  # app包名"appActivity": "xxxxxx",  # app的启动页面"autoGrantPermissions": "true",  # 默认允许app获取相关权限"noReset": True  # 保留登录模式
  6. }
  7. driver = webdriver.Remote(command_executor="http://17.0.0.1:4723/wd/hub", desired_capabilities=desired_cap)
  8. driver.implicitly_wait(10)  # 设置元素等待
  9. driver.find_element(AppiumBy.ANDROID_UIAUTOMATOR, 'new UiSelector().text("同意并继续")').click()  # text值精准匹配
复制代码
含糊匹配
  1. driver.find_element(AppiumBy.ANDROID_UIAUTOMATOR, 'new UiSelector().textContains("意并继")').click()  # text值模糊匹配
复制代码
开头匹配
  1. driver.find_element(AppiumBy.ANDROID_UIAUTOMATOR, 'new UiSelector().textStartsWith("同意")').click()  # text值匹配开头
复制代码
2)根据class_name举行定位
  1. driver.find_element(AppiumBy.ANDROID_UIAUTOMATOR, 'new UiSelector().className("android.widget.TextView")').click()
复制代码
class_name对应的就是class的值
              
           3)根据resource-id举行定位
  1. driver.find_element(AppiumBy.ANDROID_UIAUTOMATOR, 'new UiSelector().resourceId("tv.danmaku.bili:id/agree")').click()
复制代码
4)根据description举行定位
  driver.find_element(AppiumBy.ANDROID_UIAUTOMATOR, 'new UiSelector().description("Xxxx")').click()
  description对应的值就是content-desc
              
           5)多条件定位
  1. driver.find_element(AppiumBy.ANDROID_UIAUTOMATOR, 'new UiSelector().className("android.widget.TextView").text("动画").resourceId("tv.danmaku.bili:id/tab_title")').click()  # 组合使用
复制代码
多个条件判断中用.号连接
  4.ACCESSIBILITY_ID

  accessibility_id对应的值为content_desc
              
         
  1. driver.find_element(AppiumBy.ACCESSIBILITY_ID, "动画,7之4,标签").click()
复制代码
5.class_name

  这个定位剧烈不保举使用,贼垃圾,多半有重复的值,定位多数不正确
  1. driver.find_elements(AppiumBy.CLASS_NAME, "android.widget.TextView")
复制代码
class_name对应的值为class
              
           

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

拉不拉稀肚拉稀

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表