Appium滑动

TouchAction touchAction = new TouchAction(this);
// appium converts press-wait-moveto-release to a swipe action
touchAction.press(startx, starty).waitAction(duration)
.moveTo(endx, endy).release();
touchAction.perform();
提示:swipe 的高级用法,swipe 可以进一步封装,比如一些MobileElement需要滑动屏幕
才能出现,这个时候就可以封装一个滚动到这些MoblieElement出现为止的方法。

你可能感兴趣的:(测试经验总结)