Appium作为当下一款移动应用的自动化测试工具,对于测试来说重要性不言可寓,废话不多说,下面总结下它常用的API:

1.contexts
contexts(self):
  Returns the contexts within the current session .
  返回当前会 话中的上下文 ,使用后可以识别H5 的控件
  Usage:
  driver.contexts

2.scroll
scroll(self, origin_el, destination_el):
  Scrolls from one element to another
  从元素 origin_el滚动元素 destination_el
  Args:
  - originalEl - the element from which to being
  scrolling
  - destinationE1- the element to scroll to
  Usage:
  driver.scroll(el1, el2)

3.drag_and_drop
drag_and_drop(self, origin_el, destination_el):
  Drag the origin element to the destination element
  将元素origin_el拖到目标元素 destination_el
  Args:
  - originEl - the element to drag
  - destinationE1- the element to drag to
  Usage:

  driver.drag_and_drop(el1,el2)

4.tap

tap(self, positions, duration=None):
  Taps on an particular place with up to five fingers, holding for a certain time
  模拟手指点击 最多五个手指,时间为毫秒
  :Args:
  - positions - an array of tuples representing the x/y coordinates of the fingers to tap. Length can be up to five.
  - duration - (optional) length of time to tap, in ms
  Usage:

  driver.tap([(x,y),(x1,y1)],500)

5.swipe
swipe(self, start_x, start_y, end_x, end_y, duration=None):
  Swipe from one point to another point, for an optional duration.
  从A点滑动 B点 滑动,时间为毫秒
  Args:

  - start_x - x-coordinate at which to start
  - start_y - y-coordinate at which to start
  - end_x - x-coordinate at which to stop
  - end_y - y-coordinate at which to stop
  - duration - (optional) time to take the swipe, in ms.
  Usage:

  driver.swipe(x1,y1,x2,y2,500)
7.launch _app

launch_app(self):
  Start on the device the application specified in the desired capabilities.
  启动app
  Usage:
  driver.launch_app()

8.click

click(self):

  Clicks the element.

   点击元素

  Usage:

  element.click()

9.size

size(self):
  The size of the element.
  获取元素 的大小和高宽
  new_size["height"] = size["height"]
  new_size["width"] = size["width"]
  Usage:

  driver.element.size

10.location

location(self):
  The location of the element in the renderable canvas.
  获取取元 素的坐标
  Usage:

  driver.element.location

  driver.element.location.get('x')  ''返回element的x坐标, int 型''
  driver.element.location.get('y')  ''返回element的y坐标, int 型''

待续~
   

Appium常用API(一)的更多相关文章

  1. 7、Appium常用API

    嗯,官网已经介绍的很全了.会选几个常用API后期整理. Appium常用API地址:http://appium.io/docs/cn/writing-running-appium/appium-bin ...

  2. Appium常用API(二)

    接前面的常用API(一),本文接着介绍如下: 1.press_keycode press_keycode(self, keycode, metastate=None): Sends a keycode ...

  3. appium 常用api介绍(2)

    前言:接着上一篇继续讲常用的一些api 参考博文:http://blog.csdn.net/bear_w/article/details/50330565 1.send_keys send_keys( ...

  4. appium 常用API使用总结!

    将常用函数进行适用总结,后期在使用的过程中直接查找调用即可 获取界面属性.控件属性 1.current_activity:获取activity名称 device.current_activity 2. ...

  5. appium 常用API

    ''.appium api第二弹 锋利的python,这是初稿,2015/1/5 如有错误的地方,请同学们进行留言,我会及时予以修改,尽量整合一份ok的api 作者:Mads Spiral QQ:79 ...

  6. appium 常用api介绍(1)

    前言:android手机大家都很熟悉,操作有按键.触摸.点击.滑动等,各种操作方法可以通过api的方法来实现. 参考博文:http://blog.csdn.net/bear_w/article/det ...

  7. Appium常用Api实操

    本文是基于python语言在android上实操的,仅记录(忽略排版~~~) 会不时更新的: from appium import webdriver from selenium.webdriver. ...

  8. APPIUM 常用API介绍(3)

    1.send_keys send_keys(self, *value): Simulates typing into the element[在元素中模拟输入(开启appium自带的输入法并配置了ap ...

  9. Appium之常用API

    Appium常用API解析 1.current_activity:获取当前页面的activity名,比如com.taobao.tao.TBMainActivity 或 com.taobao.brows ...

随机推荐

  1. java中构造方法和方法super/this超类与子类中初始化顺序

    java中构造方法和方法全面解析 我相信大多说人都对构造方法.方法不陌生,而且很了解,但我也相信有很多像我这样的没有一个很好很清晰很全面的认识,今天就把它整理如下,希望能给大家带来点方便与帮助,也希望 ...

  2. 对Node的优点和缺点提出了自己的看法?

    (优点)因为Node是基于事件驱动和无阻塞的,所以非常适合处理并发请求, 因此构建在Node上的代理服务器相比其他技术实现(如Ruby)的服务器表现要好得多. 此外,与Node代理服务器交互的客户端代 ...

  3. 排除maven jar冲突 maven tomcat插件启动报错 filter转换异常

    最近在搞一个ssm+shiro的整合 用的maven tomcat插件 启动的时候报错,提示 maven org.springframework.web.filter.CharacterEncodin ...

  4. Dev GridControl 选择行及绑定/获取List对象

    GridControl绑定List对象一般是为了获取焦点行时直接获得该行代表的List对象,或者为了实现嵌套表格,对第一中情况,起始不用绑定List,绑定DataTable也可以实现获取对应List对 ...

  5. Netty的ChannelHandler,ChannelHandlerContext,ChannelPipeline

    本小节一起学习一下ChannelHandler,ChannelHandlerContext,ChannelPipeline这三个Netty常用的组件,不探究它们的底层源码,我们就简单的分析一下用法 首 ...

  6. CSS——创建css

    CreateInlineStyle: function () { //创建一个内联样式表 var style = document.createElement('style'); //创建一个styl ...

  7. Android基础之布局ConstraintLayout

    Google I/O 2016 上发布了 ConstraintLayout,据说很强大,那就一探究竟吧! gradle配置 compile 'com.android.support.constrain ...

  8. 「小程序JAVA实战」小程序模块页面引用(18)

    转自:https://idig8.com/2018/08/09/xiaochengxu-chuji-18/ 上一节,讲了模板的概念,其实小程序还提供了模块的概念.源码:https://github.c ...

  9. python十个博客

    1.首先第一个肯定是毋庸置疑的Planet Python这是最出名的python博客其中之一,快去看看,我希望你能找到对你有用的东西,昨天它还更新了呢! 2.第二个博客是lucumr,博主是flask ...

  10. Ubuntu更新命令 <转>

    apt-cache search package 搜索包 apt-cache show package 获取包的相关信息,如说明.大小.版本等 sudo apt-get install package ...