iOS Android? , . iOS Xcode 7.0.1 iOS 8.x/9.0. , , .
, Android- Android, Android Simulator.
swipeElement MobileElement. this.swipeElement(driver, MobileElement, 200, 3000); scroll length positive, , negative .
public void swipeElement(AndroidDriver driver, WebElement element, int scrollLength, int duration){
driver.context("NATIVE_APP");
int bottomY = element.getLocation().getY()+scrollLength;
((AppiumDriver)driver).swipe(element.getLocation().getX(), element.getLocation().getY(), element.getLocation().getX(), bottomY, duration);
}