from appium.webdriver.common.touch_action import TouchAction	

actions = TouchAction(self.driver)
actions.press(x=500, y=1809).wait(200) #wait 필수
actions.move_to(x=500, y=567)
actions.release()
actions.perform()

+ Recent posts