Appium中scroll和drag_and_drop根据元素位置滑动

作者:测试之路king 时间:2023-03-16 23:34:38 

背景

我们在操作APP应用时,有些需要从一个元素滑动到另外一个元素时,这时候我们无法确定坐标,所以swipe 根据坐标滑动方式就无法使用了,如下图:从 课堂直播 上滑到 直播公开课 位置

Appium中scroll和drag_and_drop根据元素位置滑动


这时候我们就需要使用其他滑动方式,我们想到可以根据元素进行滑动,Appium 里面根据元素来进行滑动的方式主要方法为 scrolldrag_and_drop

scroll 介绍

说明

从一个元素滚动到另一个元素,只能是两个元素之间的滑动。

方法详情

def scroll(self: T, origin_el: WebElement, destination_el: WebElement, duration: Optional[int] = None) -> T:
       """Scrolls from one element to another

Args:
           origin_el: the element from which to being scrolling
           destination_el: the element to scroll to
           duration: a duration after pressing originalEl and move the element to destinationEl.
               Default is 600 ms for W3C spec. Zero for MJSONWP.

Usage:
           driver.scroll(el1, el2)

Returns:
           Union['WebDriver', 'ActionHelpers']: Self instance
       """

# XCUITest x W3C spec has no duration by default in server side
       if self.w3c and duration is None:
           duration = 600

action = TouchAction(self)
       if duration is None:
           action.press(origin_el).move_to(destination_el).release().perform()
       else:
           action.press(origin_el).wait(duration).move_to(destination_el).release().perform()
       return self

参数:

  • origin_el - 要滚动的起始元素

  • destination_el - 要滚动到的结束元素

  • duration - 持续时间,单位毫秒,默认为 600 ms

操作场景

  • 进入网易云首页

  • 从课堂直播滑动到直播公开课位置

关键代码实现

# 定位到课堂直播元素
el1 = driver.find_element(AppiumBy.XPATH, "//*[@text='课堂直播']").click()

# 定位到直播公开课元素
el2 = driver.find_element(AppiumBy.XPATH, "//*[@text='直播公开课']").click()

# 执⾏滑动操作
driver.scroll(el1,el2)

说明

操作过程有 惯性,需要添加duration参数,参数值越大,惯性越小。

drag_and_drop 介绍

说明

从一个元素滑动到另一个元素,第二个元素代替第一个元素原本屏幕上的位置。

方法详情

def drag_and_drop(self: T, origin_el: WebElement, destination_el: WebElement) -> T:
       """Drag the origin element to the destination element

Args:
           origin_el: the element to drag
           destination_el: the element to drag to

Returns:
           Union['WebDriver', 'ActionHelpers']: Self instance
       """
       action = TouchAction(self)
       action.long_press(origin_el).move_to(destination_el).release().perform()
       return self

参数:

  • origin_el - 要滑动页面的起始元素

  • destination_el - 要滑动页面到结束元素

操作场景

  • 进入网易云首页

  • 从课堂直播滑动到直播公开课位置

关键代码实现

# 定位到课堂直播元素
el1 = driver.find_element(AppiumBy.XPATH, "//*[@text='课堂直播']").click()

# 定位到直播公开课元素
el2 = driver.find_element(AppiumBy.XPATH, "//*[@text='直播公开课']").click()

# 执⾏滑动操作
driver.drag_and_drop(el1,el2)

说明

不能设置持续时间,没有惯性

滑动和拖拽使用场景选择

滑动和拖拽无非就是考虑是否具有“惯性”,以及传递的参数是“元素”还是“坐标”。

  • scroll:有 “惯性” ,传入 “元素”,可以通过设置duration参数来进行控制惯性大小

  • drag_and_drop:无 “惯性” ,传入 “元素”

  • swipe:有 “惯性” ,传入 “坐标”,可以通过设置duration参数来进行控制惯性大小

说明: 添加duration参数,参数值越大,惯性越小

来源:https://ceshizhilu.blog.csdn.net/article/details/122889631

标签:Appium,元素,滑动
0
投稿

猜你喜欢

  • python中pyqtgraph知识点总结

    2022-02-23 10:24:30
  • Oracle数据库及应用程序优化开发者网络Oracle

    2010-07-18 13:02:00
  • yahoo 页面的标签效果

    2024-04-10 10:38:14
  • 对Pytorch 中的contiguous理解说明

    2022-04-14 08:34:47
  • sp_delete_backuphistory

    2008-06-07 13:59:00
  • Golang操作Kafka的实现示例

    2024-05-22 10:18:48
  • 关于AnacondaNavigator Jupyter Notebook更换Python内核的问题

    2022-11-17 07:21:59
  • python request post 列表的方法详解

    2023-10-04 11:46:19
  • Adobe AIR beta 2震撼发布!

    2007-10-07 11:57:00
  • python生成指定长度的随机数密码

    2021-01-24 23:53:17
  • 一篇文章带你详细了解python中一些好用的库

    2022-03-18 09:02:19
  • 网页在IE6中不能打印之谜

    2008-12-12 13:08:00
  • SQL提高查询效率之Like篇

    2011-10-01 09:36:42
  • 另类读写:ACCESS中Field对象的标题属性

    2008-11-28 16:47:00
  • vue之prop与$emit的用法说明

    2024-05-09 15:20:41
  • JavaScript substr() 字符串截取函数使用详解

    2024-06-05 09:55:13
  • 一篇文章带你深入了解Mysql触发器

    2024-01-14 15:42:35
  • Python 合并拼接字符串的方法

    2022-05-26 08:58:08
  • 一文教会你用Python获取网页指定内容

    2023-01-01 09:15:05
  • JSONLINT:python的json数据验证库实例解析

    2022-08-13 21:53:01
  • asp之家 网络编程 m.aspxhome.com