appium滑动操作(向上、向下、向左、向右滑动)

测试项目:今日头条.apk

对今日头条的app进行滑动操作(向上、向下、向左、向右滑动)


源码附上

 
 
def getSize():                               #获取当前的width和height的x、y的值
    x = driver.get_window_size()['width']   #width为x坐标
    y = driver.get_window_size()['height']  #height为y坐标
    return (x, y)

def swipeUp(t):  #当前向上滑动swipeup
    l = getSize()
    x1 = int(l[0] * 0.5)  
    y1 = int(l[1] * 0.75)   
    y2 = int(l[1] * 0.25)   
    driver.swipe(x1, y1, x1, y2,500)  #设置时间为500
swipeUp(9000)     #向上滑动9000

def swipLeft(t):      #当前向左进行滑动swipleft
    l=getSize()
    x1=int(l[0]*0.75)
    y1=int(l[1]*0.5)
    x2=int(l[0]*0.05)
    driver.swipe(x1,y1,x2,y1,500)
swipLeft(3000)        #向左滑行3000

def swipeDown(t):    #向下滑动swipedown
    l = getSize()
    x1 = int(l[0] * 0.5)
    y1 = int(l[1] * 0.25)
    y2 = int(l[1] * 0.75)
    driver.swipe(x1, y1, x1, y2,500)
swipeDown(10000)   #向下滑动10000

def swipRight(t): #向右滑行swipright
    l=getSize()
    x1=int(l[0]*0.05)
    y1=int(l[1]*0.5)
    x2=int(l[0]*0.75)
    driver.swipe(x1,y1,x2,y1,500)
swipRight(3000)    #向右滑行3000,回到初始位置



发布了36 篇原创文章 · 获赞 24 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/admins_/article/details/79203997