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()
'Test Automation > APPIUM' 카테고리의 다른 글
APPIUM 설치부터 실행까지 (0) | 2023.05.12 |
---|---|
APPIUM logcat 가져오기 : get_log 활용법 (0) | 2020.12.08 |
APPIUM TimeoutException 예외처리 (0) | 2020.12.08 |
APPIUM Desired Capabilities 설정 방법 (0) | 2020.12.06 |
APPIUM Selenium with Python (0) | 2020.12.06 |