TA的每日心情 | 奋斗 2021-8-16 14:04 |
---|
签到天数: 1 天 连续签到: 1 天 [LV.1]测试小兵
|
Text属性的方法
1
2
3
4
driver.find_element_by_android_uiautomator('new UiSelector().text("Custom View")').click()
#text
driver.find_element_by_android_uiautomator('new UiSelector().textContains("View")').click()
#查找某个字符串包含View
driver.find_element_by_android_uiautomator('new UiSelector().textStartsWith("Custom")').click()
#textStartsWith 查找某个串以Custom打头
driver.find_element_by_android_uiautomator('new UiSelector().textMatches("^Custom.*")').click()
#textMatches
class属性的方法
1
2
driver.find_element_by_android_uiautomator('new UiSelector().className("android.widget.TextVie
w").text("Custom View")').click() #className
driver.find_element_by_android_uiautomator('new UiSelector().classNameMatches(".*TextView$")
.text("Custom View")').click() #classNameMatches
伪xpath方法定位
这个方法还是比较有用,用来查找同级节点关系以及父节点关系
1
2
driver.find_element_by_android_uiautomator('new UiSelector().text("Custom View").fromParent(n
ew UiSelector().text("Accessibility Service"))').click() #通过同级元素定位同级元素
driver.find_element_by_android_uiautomator('new UiSelector().className("android.widget.ListView"
).childSelector(new UiSelector().text("Custom View"))').click() #通过父级元素定位子集元素
resourceId属性的方法
1
2
driver.find_element_by_android_uiautomator('new UiSelector().resourceId("android:id/text1")')
#resourceId
driver.find_element_by_android_uiautomator('new UiSelector().resourceIdMatches(".*id/text1$
")') #resourceIdMatches
description方法
1
2
3
driver.find_element_by_android_uiautomator('new UiSelector().description("Custom View")').click
() #description
driver.find_element_by_android_uiautomator('new UiSelector().descriptionStartsWith("Custom")
').click() #descriptionStartsWith
driver.find_element_by_android_uiautomator('new UiSelector().descriptionMatches("^Custom.*"
)').click() #descriptionMatches
元素的其他属性
除了以上比较常用的方法外,UIAutomator还支持其他一些方法,比如根据控件属性是否可点击可
聚焦可长按等来缩小要定位的控件的范围,具体使用方法不一一列举(checked,clickable,focesed..
.....)
1
driver.find_element_by_android_uiautomator('new UiSelector().clickable(true).text("Custom View
")').click()
获取控件属性值:
father=self.driver.find_element_by_android_uiautomator('new UiSelector().resourceId("com.pak
eage:id/novel_name")')
print father.get_attribute("text")
登入操作:
Texts = self.driver.find_elements_by_xpath("//android.widget.EditText")
username = Texts[0]
username.send_keys("lius")
pwd = Texts[1]
pwd.send_keys("83698")
self.driver.find_element_by_name("登录").click()
向上滑动:
self.driver.swipe(width / 2, heigh / 2, width / 2, heigh / 4)
向下滑动
self.driver.swipe(width / 2, heigh / 4, width / 2, heigh / 2)
点击:
self.driver.tap([(width*0.74,heigh*0.778)])
方法先写这么多,不懂的可以留言。看到了会及时回复
使用appium自带键盘,很好的处理文本框输入问题和中文问题
desired_caps["unicodeKeyboard"] = "True"
desired_caps["resetKeyboard"] = "True"
new command 最大时间间隔
Appium:出现info: [debug] Didn't get a new command in 60 secs, shutting down...无法继续执行
desired_caps["newCommandTimeout"] =240
获取信息类API
- (1)获取默认系统语言对应的Strings.xml文件内的数据。
-
- get_app_string()
-
- (2)查找某一个语言环境对应的字符串文件Strings.xml内数据。
-
- get_app_string(String language)
-
- (3)获取当前activity,比如(.ApiDemos)
-
- current_activity()
-
-
- App安装与卸载类API
- [java] view plain copy
- (1)根据bundleId来判断该应用是否已经安装
-
- is_app_installed(String bundleId)
-
- (2)安装app,appPath为应用的本地路径
-
- install_app(String appPath)
-
- (3)卸载app.bundleId在android中代表的是包名,而在ios中有专门的bundleId号。
-
- remove_app(String bundleId)
-
- (4)关闭应用,其实就是按home键把应用置于后台
-
- close_app()
-
- (5)启动应用
-
- launch_app()
-
- (6)先closeApp然后在launchAPP
-
- reset_app()
- 文件操作类API
- [java] view plain copy
- (1)将字符数组用64位格式写到远程目录的某个文件中。也可以理解为把本地文件push到设备上。
-
- push_file(String remotePath, byte[] base64Data)
-
- (2)将设备上的文件pull到本地硬盘上
-
- pull_file(String remotePath)
-
- (3)将设备上的文件夹pull到本地硬盘上,一般远程文件为/data/local/tmp下的文件。
-
- pull_folder(String remotePath)
- 设置相关类API
- [java] view plain copy
- (1)设置手机的网络连接状态,可以开关蓝牙、wifi、数据流量。通过NetworkConnectionSetting中的属性来设置各个网络连接的状态。
-
- set_network_connect(NetworkConnectionSetting connection)
-
- (2)得到当前网络的状态
-
- get_network_connection()
- 用户操作类API
- [java] view plain copy
- (1)ios隐藏键盘
-
- hide_keyboard()
-
- (2)隐藏键盘,只能用于ios上。
-
- hide_keyboard(String strategy, String keyName)
-
- (3)按下某个键,具体哪个键由key值决定,key值定义在AndroidKeyCode类中
-
- send_key_event(int key)
-
- (4)执行一个touch动作,该touch动作是由TouchAction封装的。
-
- perform_touchAction(TouchAction touchAction)
-
- (5)点击element控件中心点按下,duration*5毫秒秒后松开,如此重复fingers次。
-
- tap(int fingers, WebElement element, int duration)
-
- (6)点击(x,y)点按下,duration*5毫秒后松开,如此重复fingers次。
-
- tap(int fingers, int x, int y, int duration)
-
- (7)从(startx,starty)滑到(endx,endy),分duration步滑,每一步用时是5毫秒。
-
- swipe(int startx, int starty, int endx, int endy, int duration)
-
- (8)2个手指操作控件,从对角线向中心点滑动。
-
- pinch(WebElement el)
-
- (9)以(x,y)为基准,计算得出(x,y-100),(x,y+100)两个点,然后2个手指按住这两个点同时滑到(x,y)
-
- pinch(int x, int y)
-
- (10)与pinch(el)的动作刚好相反。两个手指由控件的中心点慢慢向控件的左顶点后右底点滑动。
-
- zoom(WebElement el)
-
- (11)和pinch(x,y)相反。两个手指从(x,y)点开始向(x,y-100)和(x,y+100)滑动。
-
- zoom(int x, int y)
-
- (12)锁屏多少秒后解锁
-
- lock_screen(int seconds)
-
- (13)模拟摇晃手机
-
- shake()
-
- (14)滚动到某个text属性为指定的字符串的控件
-
- scroll_to(String text)
-
- (15)滚动方向由element1到element2
-
- scroll(element1,element2)
-
- (16)滚动到某个text属性包含传入的字符串的控件
-
- scroll_to_exact(String text)
-
- (17)设置上下文
-
- context(String name)
-
- (18)可用上下文
-
- get_context_handles()
-
- (19)当前上下文
-
- get_context()
-
- (20)设置屏幕横屏或者竖屏
-
- rotate(ScreenOrientation orientation)
-
- (21)获取当前屏幕的方向
-
- get_orientation()
- 获取控件类API
- seleniumdriver
- [java] view plain copy
- find_element_by_id
- find_elements_by_id
- find_element_by_name
- find_elements_by_name
- find_element_by_link_text
- find_elements_by_link_text
- find_element_by_partial_link_text
- find_elements_by_partial_link_text
- find_element_by_tag_name
- find_elements_by_tag_name
- find_element_by_xpath
- find_elements_by_xpath
- find_element_by_class_name
- find_elements_by_class_name
- find_element_by_css_selector
- find_elements_by_css_selector
- appiumdriver
- [java] view plain copy
- find_element_by_ios_uiautomation
- find_elements_by_ios_uiautomation
- find_element_by_android_uiautomator
- find_elements_by_android_uiautomator
- find_element_by_accessibility_id
- find_elements_by_accessibility_id
复制代码 AppiumDriver的辅助类
主要针对手势操作,比如滑动、长按、拖动等。TouchAction的原理是讲一系列的动作放在一个链
条中,然后将该链条传递给服务器。服务器接受到该链条后,解析各个动作,逐个执行。
- TouchAction()
-
- (1)在控件上执行press操作
-
- press(WebElement el)
-
- (2)在坐标为(x,y)的点执行press操作
-
- press(int x, int y)
-
- (3)在控件el的左上角的x坐标偏移x单位,y左边偏移y单位的坐标上执行press操作。
-
- press(WebElement el, int x, int y)
-
- (4)释放操作,代表该系列动作的一个结束标志。
-
- release()
-
- (5)以el为目标,从另一个点移动到该目标上
-
- move_to(WebElement el)
-
- (6)以(x,y)点为目标,从另一个点移动到该目标上
-
- move_to( int x, int y)
-
- (7) 在控件的中心点上敲击一下
-
- tap(WebElement el)
-
- (8)在(x,y)点轻击一下
-
- tap(int x, int y)
-
- (9)以控件el的左上角为基准,x轴向右移动x单位,y轴向下移动y单位。在该点上轻击。
-
- tap(WebElement el, int x, int y)
-
- (10)代表一个空操作,等待一段时间
-
- wait_action()
-
- (11)等待ms秒
-
- wait_action(int ms)
-
- (12)控件长按
-
- long_press(WebElement el)
-
- (13)点长按
-
- long_press(int x, int y)
-
- (14)偏移点长按
-
- long_press(WebElement el, int x, int y)
-
- (15)取消执行该动作
-
- cancel()
复制代码
|
|