本章主要介绍几种原生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
- import time
- from appium import webdriver
- from appium.webdriver.common.appiumby import AppiumBy
- desired_cap = {
- "platformName": "Android", # 手机系统
- "platformVersion": "11", # 手机系统版本
- "deviceName": 'xxxxx', # 连接的设备
- "automationName": "UiAutomator2", # 自动化测试框架
- "appPackage": "xxxxx", # app包名
- "appActivity": "xxxxxx", # app的启动页面
- "autoGrantPermissions": "true", # 默认允许app获取相关权限
- "noReset": True # 保留登录模式
- }
- driver = webdriver.Remote(command_executor="http://127.0.0.1:4723/wd/hub", desired_capabilities=desired_cap)
- driver.implicitly_wait(10) # 设置元素等待
- 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)单条件定位
- driver.find_element(AppiumBy.XPATH, '//*[@text="同意并继续"]').click()
复制代码 2)多条件定位
- driver.find_element(AppiumBy.XPATH, '//*[@text="同意并继续" and @resource-id="tv.danmaku.bili:id/agree"]').click()
复制代码 多个条件之间用and连接
3.ANDROID_UIAUTOMATOR
1)根据文本(text)值举行定位
精准匹配
- import time
- from appium import webdriver
- from appium.webdriver.common.appiumby import AppiumBy
- desired_cap = {
- "platformName": "Android", # 手机系统"platformVersion": "11", # 手机系统版本"deviceName": 'xxxxx', # 连接的设备"automationName": "UiAutomator2", # 自动化测试框架"appPackage": "xxxxx", # app包名"appActivity": "xxxxxx", # app的启动页面"autoGrantPermissions": "true", # 默认允许app获取相关权限"noReset": True # 保留登录模式
- }
- driver = webdriver.Remote(command_executor="http://17.0.0.1:4723/wd/hub", desired_capabilities=desired_cap)
- driver.implicitly_wait(10) # 设置元素等待
- driver.find_element(AppiumBy.ANDROID_UIAUTOMATOR, 'new UiSelector().text("同意并继续")').click() # text值精准匹配
复制代码 含糊匹配
- driver.find_element(AppiumBy.ANDROID_UIAUTOMATOR, 'new UiSelector().textContains("意并继")').click() # text值模糊匹配
复制代码 开头匹配
- driver.find_element(AppiumBy.ANDROID_UIAUTOMATOR, 'new UiSelector().textStartsWith("同意")').click() # text值匹配开头
复制代码 2)根据class_name举行定位
- driver.find_element(AppiumBy.ANDROID_UIAUTOMATOR, 'new UiSelector().className("android.widget.TextView")').click()
复制代码 class_name对应的就是class的值
3)根据resource-id举行定位
- 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)多条件定位
- 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
- driver.find_element(AppiumBy.ACCESSIBILITY_ID, "动画,7之4,标签").click()
复制代码 5.class_name
这个定位剧烈不保举使用,贼垃圾,多半有重复的值,定位多数不正确
- driver.find_elements(AppiumBy.CLASS_NAME, "android.widget.TextView")
复制代码 class_name对应的值为class
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |