博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Appium + Python -------------元素定位
阅读量:4842 次
发布时间:2019-06-11

本文共 2398 字,大约阅读时间需要 7 分钟。

说在前面

1、https://github.com/appium/python-client/tree/master/test  里面有一些test ,可以看看,研究研究

2、学会使用 uiautomatorviewer 和 hierarchyviewer  ,这两个工具可以帮助查看app一些信息,非常好用,在android-tools下

 

 

 

控件的特征就是控件的属性,所以我们可以根据控件的特征进行定位

PS:断言部分之后再细说

1、find_elements_by_accessibility_id,以accessibility_id进行定位,对Android而言,就是content-description属性(使用uiautomatorviewer 可以查看到) ,所以参数不要弄错

  

el = self.driver.find_element_by_accessibility_id(u'请输入QQ号码或手机或邮箱') #以QQ登录页为例 self.assertIsNotNone(el)els = self.driver.find_elements_by_accessibility_id('请输入QQ号码或手机或邮箱')self.assertIsInstance(els, list)

 

2、find_element_by_class_name,根据class进行定位

self.driver.find_element_by_class_name("android.widget.EditText")  # 定位唯一元素 self.driver.find_elements_by_class_name("android.widget.EditText")[0]  # 找到所有android.widget.EditText并定位第一个

 

3、find_elemnt_by_name ,根据name进行定位,对于android来说,就是text属性

e3 = self.driver.find_element_by_name(u"登 录")

 

4、find_element_by_android_uiautomator ,使用uiautomator定位,后面参数更改即可

  • UiSelector().text    根据text属性进行定位

    self.driver.find_element_by_android_uiautomator('new UiSelector().text("33001122")')
  • UISelector.textContains 根据text属性模糊定位

    e6 = self.driver.find_element_by_android_uiautomator('new UiSelector().textContains("1122")')
  • UISelector.textStartsWith 根据text的前面几位是否与text一致来定位

    e7 = self.driver.find_element_by_android_uiautomator('new UiSelector().textStartsWith("33")')
  • UISelector.textMatches   通过正则表达式和text来进行定位,正则不怎么会,先不扩展了

  •  UISelector.className  通过class来进行定位,合理利用层级定位,例如找到所有的Edittext然后根据text定位

    e8 = self.driver.find_element_by_android_uiautomator('new UiSelector()'                                                             '.className("android.widget.EditText")'                                                             '.textContains("33")')
  • UISelector.classNameMatches  通过正则表达式和class来进行定位

  还有UiSelector.descriptionMatches   、   UiSelector.descriptionStartWith   、UiSelector.description

 

5、driver.find_element_by_id 与 UiSeletor.resourceId  都是通过resourceId 来进行定位,这个属性只有在Api Level18以上才有

e9 = self.driver.find_element_by_android_uiautomator('new Uiseletor()'                                                             '.resourceId'                                                             '("com.taobao.qianniu:id/accountCompleteTextView")')e10 = self.driver.find_element_by_id("com.taobao.qianniu:id/accountCompleteTextView")

 

--------如果上面说的有什么问题,麻烦大家及时扣扣我!感恩!

--------会不定时更新,转载请说明原文

转载于:https://www.cnblogs.com/Test-road-me/p/5461780.html

你可能感兴趣的文章
算法笔记_003:矩阵相乘问题【分治法】
查看>>
算法笔记_017:递归执行顺序的探讨(Java)
查看>>
牛顿法与拟牛顿法学习笔记(四)BFGS 算法
查看>>
ninth week (1)
查看>>
C float与char数组 互转
查看>>
异步线程中开启定时器
查看>>
正则表达式与unicode
查看>>
abp(net core)+easyui+efcore实现仓储管理系统——ABP总体介绍(一)
查看>>
div水平居中与垂直居中的方法【摘自美浩工作室官方博客 】
查看>>
UITableView 滚动条
查看>>
Android已有的原生Camera框架中加入自己的API的实现方案。
查看>>
Learn python the ninth day
查看>>
Debian+Django+uWsgi+nginx+mysql+celery
查看>>
docker 基本操作
查看>>
无缝滚动的float属性
查看>>
价值观作业
查看>>
char , unsigned char 和 signed char 区别
查看>>
挂起布局逻辑与恢复布局逻辑
查看>>
back to back
查看>>
Linux/Unix笔记本
查看>>