zoukankan      html  css  js  c++  java
  • APPium+Python+iOS屏幕滑动方法对比

    最近在学习appium自动化,对iOS手机进行滑动操作进行总结:

    1、mobile:scroll;该方法在实际使用调用时,会滚动2次。执行时间很长。

    • 向下滚动整个屏幕driver.execute_script('mobile: scroll', {'direction': 'down'})
    • 向上滚动整个屏幕driver.execute_script('mobile: scroll', {'direction': 'up'})
    • 向左滚动整个屏幕driver.execute_script('mobile: scroll', {'direction': 'left'})
    • 向右滚动整个屏幕driver.execute_script('mobile: scroll', {'direction': 'right'})

    2、mobile:swipe;该方法在调用过程中,执行速度快,滑动屏幕距离短

    • 向下滚动屏幕driver.execute_script('mobile: swipe', {'direction': 'up'})
    • 向上滚动屏幕driver.execute_script('mobile: swipe', {'direction': 'down'})
    • 向右滚动屏幕driver.execute_script('mobile: swipe', {'direction': 'left'})
    • 向左滚动屏幕driver.execute_script('mobile: swipe', {'direction': 'right'})

    3、mobile:dragFromToForDurationduration: 浮点数范围[0.5,60]。该方法在调用过程中,执行速度快,滑动屏幕距离可根据屏幕进行控制,但是如果滑动中起点坐标在控件上,会触发点击操作。

    表示开始拖动点之前的点击手势需要多长时间才能开始拖动fromX:起点X坐标fromY:起点Y坐标toX:终点X坐标toY:终点Y坐标以上都是必要参数。element:控件ID,可以指定为None,为None时以整个手机屏幕为边界。
    示例:

    driver.execute_script("mobile:dragFromToForDuration",{"duration":0.5,"element":None,"fromX":0,"fromY":650,"toX":0,"toY":100}
    
  • 相关阅读:
    Liunx-----Shell脚本流程控制--顺序、选择、循环
    oracle基本查询
    Shell脚本练习题
    Shell脚本:选择结构、循环结构、
    Shell脚本
    Linux的基本命令
    动态页面技术(JSP/EL/JSTL)
    小功能:访问页面距上次访问有多久时间
    添加验证码,并验证验证码是否正确
    注册,登陆的Servlet、dao、service、domain、jsp页面、
  • 原文地址:https://www.cnblogs.com/Lanht/p/11429717.html
Copyright © 2011-2022 走看看