效果预览
1. 配置Appium
- 过程繁琐但不复杂可以参考
https://www.jianshu.com/p/ae0959d19665
2. app自动化
- 利用pythone+Appium 来实现抖音自动打开与上滑
滑动代码如下
def getSize(self): #获取当前的width和height的x、y的值
x = self.driver.get_window_size()['width'] #width为x坐标
y = self.driver.get_window_size()['height'] #height为y坐标
print(x,y)
return (x, y)
def swipeUp(self,t): #当前向上滑动swipeup
l = getSize()
x1 = int(l[0] * 0.5)
y1 =