0
我升級到Appium 1.6.4,現在我得到:Appium 1.6.4 Touchaction問題
KeyError: 'touchAction'
在我testautomation的Android設備。 在此之前,它工作順利。
I am using Ubuntu 16.04
I am using Selenium v3.0.1 (btw Selenium v3.4.1 - the latest one, refuses to work with my Android test automation)
任何想法如何解決這個問題? 我的代碼是:
def panic(self, wait=5):
action = TouchAction(self.driver)
panic = self.driver.find_element_by_id('com.eightdevelopment.eas.android:id/panicText')
action.long_press(panic).perform().wait(wait).release().perform().wait(wait)
謝謝