Gesture Automation in Android Emulator

ITouchAction action = new TouchAction(driver)
                .Press(scrollable, xStart, yStart)
                .Wait(1000)
                .MoveTo(scrollable, xStart, yEnd)
                .Release();

             action.Perform();
  • where scrollable is the area where you’d like to scroll
  • be sure to calculate the correct values for Start and End depending if you’re scrolling up or down