APPIUM API整理(python)---元素查找

最近在学习自动化框架appium,网上找一些API相关资料整理了一下

1.find_element_by_id

find_element_by_id(self, id_):

Finds element within this element‘s children by ID(通过元素的ID定位元素)

:Args: - id_ - ID of child element to locate.

用法 driver. find_element_by_id(“id”)

find_element_by_id方法,是对于那些有id而且可以互相区分的控件的操作使用,一般通过android sdk 的tools路径下的uiautomatorviewer.bat自带工具来获取,

使用这个工具首先要确保前面环境配置ok,然后确定测试机器或android模拟器处于连接状态(cmd上输入adb devices),下面是使用uiautomatorviewer.bat工具

获取resource-id

代码举例:

#点击天气应用
driver.find_element_by_id(‘com.huawei.android.totemweather:id/mulan_widget_currentweather_smallicon‘).click()  

2.find_element_by_xpath

find_element_by_xpath(self, xpath):

Finds element by xpath(通过Xpath定位元素,详细方法可参阅http://www.w3school.com.cn/xpath/ )

```
:Args:

xpath - xpath of element to locate. "//input[@class=‘myelement‘]"

Note: The base path will be relative to this element‘s location.

This will select the first link under this element.

::

myelement.find_elements_by_xpath(".//a")

However, this will select the first link on the page.

::

myelement.find_elements_by_xpath("//a")
```

用法 find_element_by_xpath(“//*”)

find_element_by_xpath方法也需要使用uiautomatorviewer.bat工具来定位控件,如下图所示右边相机控件id为空,这时就需要使用xpath来定位元素了,

我们可以使用xpath用text和index来定位元素,可以这样定位相机:

driver.find_element_by_xpath("//android.widget.TextView[contains(@text,‘相机‘)]")

driver.find_element_by_xpath("//android.widget.TextView[contains(@index,8)]")

如下图的图库那个控件index和天气温度控件是相同的,都是index=7,就只能用text或text与index结合了,如:

driver.find_element_by_xpath("//android.widget.TextView[contains(@text,‘图库‘)]")

driver.find_element_by_xpath("//android.widget.TextView[contains(@text,‘图库‘)[email protected]=‘7‘]")

上面的代码就可以这样写

# -*-coding=utf-8 -*-

from appium import webdriver
import time
desired_caps = {
‘platformName‘ : ‘Android‘,
‘deviceName‘ : ‘76P4C15813005463‘,
‘platformVersion‘ : ‘5.1‘,
#测试apk包名
‘appPackage‘ : ‘com.huawei.android.launcher‘,
#测试apk的launcherActivity
‘appActivity‘ : ‘.Launcher‘,
}
#进入android系统launcher
driver = webdriver.Remote(‘http://127.0.0.1:4723/wd/hub‘,desired_caps)
time.sleep(5)
#从launcher主界面进入相机应用并退出的两种方法
driver.keyevent(‘3‘)
#xpath使用text定位控件
driver.find_element_by_xpath("//android.widget.TextView[contains(@text,‘相机‘)]").click()
time.sleep(2)
driver.keyevent(‘3‘)
time.sleep(2)
#xpath使用index定位控件
driver.find_element_by_xpath("//android.widget.TextView[contains(@index,8)]").click()
time.sleep(2)
driver.keyevent(‘3‘)
time.sleep(2)

#从launcher主界面进入图库应用并退出的两种方法
#xpath使用text定位控件
driver.find_element_by_xpath("//android.widget.TextView[contains(@text,‘图库‘).click()
time.sleep(2)
driver.keyevent(‘3‘)
time.sleep(2)
#xpath使用text与index一起定位控件
driver.find_element_by_xpath("//android.widget.TextView[contains(@text,‘图库‘)[email protected]=‘7‘]").click()
time.sleep(5)
driver.keyevent(‘3‘)
time.sleep(2)

driver.quit()

 3. find_element_by_name

find_element_by_name(self, name):

Finds element within this element‘s children by name【通过元素Name定位(元素的名称属性text)】

:Args: - name - name property of the element to find.

用法: driver.find_element_by_name(“name”)

find_elements_by_name方法的控件元素也需要使用uiautomatorviewer.bat工具来定位,如上面例子中带有text信息的控件就可以直接使用,如

driver.find_element_by_xpath("//android.widget.TextView[contains(@text,‘相机‘)]")

driver.find_element_by_xpath("//android.widget.TextView[contains(@index,8)]") 

可以使用

driver.find_element_by_name(‘相机‘)

脚本如下

from appium import webdriver
import time
desired_caps = {
‘platformName‘ : ‘Android‘,
‘deviceName‘ : ‘76P4C15813005463‘,
‘platformVersion‘ : ‘5.1‘,
#测试apk包名
‘appPackage‘ : ‘com.huawei.android.launcher‘,
#测试apk的launcherActivity
‘appActivity‘ : ‘.Launcher‘,
}
#进入android系统launcher
driver = webdriver.Remote(‘http://localhost:4723/wd/hub‘,desired_caps)
time.sleep(5)

#name方法进入相机应用
time.sleep(2)
driver.find_element_by_name("相机").click()
time.sleep(5)

driver.quit()

4. find_element_by_class_name

find_element_by_class_name(self, name):

Finds element within this element‘s children by class name(通过元素class name属性定位元素 )

:Args: - name - class name to search for.

用法 driver. find_element_by_class_name(“android.widget.LinearLayout”)

find_element_by_class_name方法其实很不实用,一般控件的class基本相同,如下图上面的应用控件class都是android.widget.TextView,所以不好区分元素。

 5. find_element_by_link_text

find_element_by_link_text(self, link_text):

Finds element within this element‘s children by visible link text.
通过元素可见链接文本定位
:Args:
- link_text - Link text string to search for.
用法 driver.find_element_by_link_text(“text”)  

6. find_elements_by_link_text

find_element_by_link_text(self, link_text):

Finds a list of elements within this element‘s children by visible link text
通过元素可见链接文本定位,含有该属性的所有元素
:Args:
- link_text - Link text string to search for.
用法 driver.find_elements_by_link_text(“text”)

7. find_element_by_partial_link_text

find_element_by_partial_link_text(self, link_text):

 8. find_element_by_tag_name

find_element_by_tag_name(self, name):

Finds element within this element‘s children by tag name.
通过查找html的标签名称定位元素
:Args:
- name - name of html tag (eg: h1, a, span)
用法 driver.find_element_by_tag_name(“name”) 

9. find_element_by_css_selector

find_element_by_css_selector(self, css_selector):

‘Finds element within this element‘s children by CSS selector.
通过CSS选择器定位元素
:Args:
- css_selector - CSS selctor string, ex: ‘a.nav#home‘  ’

10. find_element_by_ios_uiautomation

find_element_by_ios_uiautomation(self, uia_string):

Finds an element by uiautomation in iOS.
通过iOS uiautomation查找元素
:Args:
- uia_string - The element name in the iOS UIAutomation library

:Usage:
driver.find_element_by_ios_uiautomation(‘.elements()[1].cells()[2]‘)
用法dr. find_element_by_ios_uiautomation(‘elements’)  

 11. find_element_by_accessibility_id

find_element_by_accessibility_id(self, id):

Finds an element by accessibility id.
通过accessibility id查找元素
:Args:
- id - a string corresponding to a recursive element search using the
Id/Name that the native Accessibility options utilize

:Usage:
driver.find_element_by_accessibility_id()
用法driver.find_element_by_accessibility_id(‘id’)

学习地址:

http://blog.csdn.net/bear_w/article/details/50330565

http://blog.csdn.net/bear_w/article/details/50330565

时间: 2024-10-25 21:54:02

APPIUM API整理(python)---元素查找的相关文章

APPIUM API整理(python)---操作类

APPIUM 常用API介绍(1) 前言:android手机大家都很熟悉,操作有按键.触摸.点击.滑动等,各种操作方法可以通过api的方法来实现.参考博文:http://blog.csdn.net/bear_w/article/details/50330565 1.click click(self):Clicks the element(点击元素 )用法 element.click() driver.find_element_by_id('com.huawei.camera:id/shutter

APPIUM API整理(python)---其他辅助类

App运行类 1.current_activity current_activity(self): Retrieves the current activity on the device. 获取当前的activity 用法 print(driver.current_activity()) 2. start_activity start_activity(self, app_package, app_activity, **opts): Opens an arbitrary activity d

中文Appium API 文档

该文档是Testerhome官方翻译的源地址:https://github.com/appium/appium/tree/master/docs/cn官方网站上的:http://appium.io/slate/cn/master/?ruby#about-appium 中文Appium API 文档 第一章:关于appium1.1 appium客户端客户端类库列表及Appium服务端支持 这些类库封装了标准Selenium客户端类库,为用户提供所有常见的JSON 格式selenium命令以及额外的

WebDriver元素查找方法摘录与总结

WebDriver元素查找方法摘录与总结 整理By:果冻迪迪 selenium-webdriver提供了强大的元素定位方法,支持以下三种方法. ? 单个对象的定位方法 ? 多个对象的定位方法 ? 层级定位 定位单个元素 在定位单个元素时,selenium-webdriver提示了如下一些方法对元素进行定位. By.className(className)) By.cssSelector(selector) By.id(id) By.linkText(linkText) By.name(name)

appium API接口

appium API接口 标签(空格分隔): appium常用api 1.contexts contexts(self) 返回当前会话的上下文,使用可以识别H5页面的控件: driver.contexts 2.current_context 返回当前会话的当前上下文: 用法:driver.current_context 3.context 返回当前会话的当前上下文: 用法:driver.context find_element_by_ios_uiautomation(self,uia_strin

Appium appium+Android+selenium+python web 自动化 / 手机自动化 [分享] (windows)

前期准备 1.windows操作系统2.python3.53.selenium4.chrome浏览器5.chrome浏览器驱动6.pycharm7.appium8.JDK9.SDK10.安卓模拟器(genymotion)或真机11.任意apk12.使用安卓模拟器genymotion需要virtual box(个别的会补充,软件版本自己随意) 一.知识补充(1) Appium介绍 Appium是一个开源.跨平台的测试框架,可以用来测试原生及混合的移动端应用.Appium支持iOS.Android及

Web自动化测试 三 ----- DOM对象和元素查找

一.DOM对象 DOM(Document Object Model文档对象模型):将HTML的各种元素映射为JS可访问的对象.HTML文档中的所有内容都是节点,这些东西在HTML中我们称为元素. 整个文档是一个文档节点 每个HTML元素是元素节点 HTML元素的文本是文本节点 每个HTML属性时属性节点 注释是注释节点 DOM时间监听 类似于python中的while循环机制 事件 描述 onclick  用户点击HTML元素 onmouseover  用户在一个HTML元素上移动鼠标 onmo

codevs1230元素查找(hash)

1230 元素查找 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 钻石 Diamond 题目描述 Description 给出n个正整数,然后有m个询问,每个询问一个整数,询问该整数是否在n个正整数中出现过. 输入描述 Input Description 第一行两个整数 n 和m. 第二行n个正整数(1<=n<= 100000) 第三行m个整数(1<=m<=100000) 输出描述 Output Description 一共m行,若出现则输出YES,否则输出NO

python属性查找

python中执行obj.attr时,将调用特殊方法obj.__getattribute__('attr'),该方法执行搜索来查找该属性,通常涉及检查特性.查找实例字典.查找类字典以及搜索基类.如果搜索过程失败,最终会尝试调用类的__getattr__()方法.如果这也失败,则抛出AttributeError异常. 具体步骤如下: 1.如果attr是个特殊属性(例如python提供的),直接返回. 2.在obj.__class__.__dict__即类字典中查找attr,如果attr是个data