Obtain the start point end point of the object to be swiped by using appium inspector or use settings->developer options->show pointer location to get starting and end point of object to be scrolled and then perform swipe on that co-ordinates with minimum duration of >500 , swipe wont work if u give any value below 500 in duration. self.driver.swipe(start_x=300, start_y=281, end_x=75, end_y=281, duration=500) self.driver.implicitly_wait(10) self.driver.swipe(start_x=75, start_y=281, end_x=300, end_y=281, duration=500)
source share