How to scroll in Appium using python

Python - Android.

Change the value of end_y depending on how much you try to scroll down for each swipe.

self.driver.swipe(470, 1400, 470, 1200, 400)

driver.swipe(start_x, start_y, end_x, end_y, duration)

1 Like