Appium 1.5.3,macOS Sierra,Android 5,Java
我想向列表视图向下滚动一定数量的像素(-400)。 我正在使用此代码:
TouchAction touchAction4 = new TouchAction(driver);
touchAction4.press(400, 800).moveTo(0,-400).waitAction(2000).release();
touchAction4.perform();
但它就像手指快速滚动几个屏幕高度一样。 waitAction无济于事。
答案 0 :(得分:0)
我更喜欢使用驱动程序的滑动方法。
driver.swipe(startX, startY, endX, endY, durationMilis)