由于在最新的Appium客户端库中从5.0版开始不推荐使用滑动方法。有人可以提供解决方案。
下面的代码部分工作。
Dimension dimensions = driver.manage().window().getSize();
Double screenHeightStart = dimensions.getHeight() * 0.5;
int scrollStart = screenHeightStart.intValue();
Double screenHeightEnd = dimensions.getHeight() * 0.2;
int scrollEnd = screenHeightEnd.intValue();
new TouchAction(driver).press(0, scrollStart).waitAction(2000)
.moveTo(0, scrollEnd).release().perform();