Test Automation/APPIUM
APPIUM 스크롤
summer.west
2022. 1. 11. 15:58
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()