1、appnium中webdriver的滑屏方法
def swipe(self: T, start_x: int, start_y: int, end_x: int, end_y: int, duration: int = 0) -> T:
"""Swipe from one point to another point, for an optional duration.
optional:可选的,此处表示可选参数,可填可不填
duration:持续时间
补充:-> 的作用,常常出现在python函数定义的函数名后面,为函数添加元数据,描述函数的返回类型,从而方便开发人员使用。
def attrs(self) -> _Attrs: # 表明函数返回的是一个外部可访问的类的私有变量
pass
def add(x, y) -> int: # 表明函数的返回值为int类型
return x+y