Appium獲取toast消息遇到的問題(一)
阿新 • • 發佈:2018-09-19
運行錯誤 提示 信息 官網 div activit 現在 true code
一、運行錯誤
Android獲取toast,需要在參數裏設置automationName:Uiautomator2
1 # 設置設備的信息 2 desired_caps = { 3 ‘platformName‘: ‘Android‘, # 平臺 4 ‘platformVersion‘: ‘5.1‘, # 版本號 5 ‘deviceName‘: 6 ‘appPackage‘: 7 ‘appActivity‘: 8 ‘unicodeKeyboard‘: ‘True‘, # 防止鍵盤中文不能輸入 9 ‘resetKeyboard‘: ‘True‘, # 重置設置生效 10 ‘automationName‘: ‘Uiautomator2‘, 11 ‘noSign‘:‘True‘ 12 }
在參數裏設置後,運行腳本,提示Uiautomator2錯誤, 後經查詢appium1.6.3以上才能識別toast,
於是去github官網下載最新版本:https://github.com/appium/appium-desktop/releases,仍未解決;
幾經折騰最後發現在安裝appium-desktop的時候需要將安裝模式設置為只為此用戶安裝,運行後沒有在提示錯誤,正常運行
參考鏈接:https://testerhome.com/topics/15224
Appium獲取toast消息遇到的問題(一)