I am using appium1.15. Please help me How to scroll down android app screen.
Um. read the SDK docs?
http://appium.io/docs/en/writing-running-appium/touch-actions/
(python)
drag, not “scroll”
grid = self.find_element_by_accessibility_id(“ConnectionsGridView”)
self.execute_drag({“fromX”: grid.location[‘x’] + int(grid.size[‘width’]/2),
“fromY”: grid.location[‘y’] + grid.size[‘height’] - 5,
“toX”: grid.location[‘x’] + int(grid.size[‘width’] / 2),
“toY”: grid.location[‘y’] + 5
})
(/python)