欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-06-03 23:44:14
目录背景scroll 介绍说明参数:操作场景关键代码实现说明drag_and_drop 介绍说明操作场景关键代码实现滑动和拖拽使用场景选择背景我们在操作app应用时,有些需要从一个元素滑动到另外一个元...

背景

我们在操作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参数,参数值越大,惯性越小

到此这篇关于appium中scroll和drag_and_drop根据元素位置滑动的文章就介绍到这了,更多相关appium 元素滑动内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!