Appium 使用 uiautomator 2 檢測 toast, 同樣的程式碼在 Pixel 2XL (android 10) 上就可以正常執行;在 Pixel 2 (android 9) 上就報錯,搞了一段時間沒搞定,請各位出出招,謝謝
Appium 版本:1.13.0
SDK:
這些都已經安裝好了
使用 uiautomator 2 檢測 toast, 同樣的程式碼在 Pixel 2XL (android 10) 上就可以正常執行;在 Pixel 2 (android 9) 上就報錯:
(1)cmd:
E
======================================================================
ERROR: test_case (__main__.BtSwitchTset)
----------------------------------------------------------------------
Traceback (most recent call last):
File "Developer_Toast_2.py", line 36, in setUp
self.driver = webdriver.Remote('http://localhost:4723/wd/hub', desired_caps)
File "C:\Users\cody.ming\AppData\Local\Programs\Python\Python37\lib\site-packages\appium\webdriver\webdriver.py", line 144, in __init__
proxy
File "C:\Users\cody.ming\AppData\Local\Programs\Python\Python37\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 157, in __init__
self.start_session(capabilities, browser_profile)
File "C:\Users\cody.ming\AppData\Local\Programs\Python\Python37\lib\site-packages\appium\webdriver\webdriver.py", line 219, in start_session
response = self.execute(RemoteCommand.NEW_SESSION, parameters)
File "C:\Users\cody.ming\AppData\Local\Programs\Python\Python37\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 321, in execute
self.error_handler.check_response(response)
File "C:\Users\cody.ming\AppData\Local\Programs\Python\Python37\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 242, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: An unknown server-side error occurred while processing the command. Original error: Error executing adbExec. Original error: 'Command 'E\:\\Andr
oid_for_Appium\\android-sdk_r24.4.1-windows\\android-sdk-windows\\platform-tools\\adb.exe -P 5037 -s FA7971A04040 shell pm install /data/local/tmp/appium_cache/56abf1bf10f6562619a2dd8fb060718e27c4cb28
.apk' exited with code 1'; Stderr: ''; Code: '1'
----------------------------------------------------------------------
Ran 1 test in 17.730s
FAILED (errors=1)
(2)Appium:
看著就這四句黃歎號有些問題
另外,程式碼如下:
import subprocess
from appium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
import unittest
import time, os
from selenium.webdriver.support import expected_conditions as EC
import uiautomator2 as u2
from selenium.webdriver.common.by import By
import warnings
class ToastTset(unittest.TestCase):
def setUp(self):
warnings.simplefilter("ignore", ResourceWarning)
os.system("adb shell input keyevent 26")
os.system("adb shell input keyevent 3")
desired_caps = {}
desired_caps['platformName'] = 'Android'
desired_caps['platformVersion'] = '9' #Pixel 2
desired_caps['deviceName'] = 'FA7971A04040' #Pixel 2
desired_caps['appPackage'] = 'com.android.settings'
desired_caps['appActivity'] = 'com.android.settings.Settings'
desired_caps ['automationName'] ='UiAutomator2'
self.driver = webdriver.Remote('http://localhost:4723/wd/hub', desired_caps)
def test_case(self):
driver = self.driver
item = driver.find_element_by_android_uiautomator('new UiScrollable(new UiSelector().scrollable(true).instance(0)).getChildByText(new UiSelector().className("android.widget.TextView"), "系統", true)')
item.click()
driver.find_element_by_android_uiautomator('new UiSelector().text("關於手機")').click()
item_ver = driver.find_element_by_android_uiautomator('new UiScrollable(new UiSelector().scrollable(true).instance(0)).getChildByText(new UiSelector().className("android.widget.TextView"), "版本號", true)')
item_ver.click()
try:
#檢測toast內容的方法
toast_loc = ("xpath", ".//*[contains(@text,'您已處於')]")
t = WebDriverWait(driver, 30, 0.01).until(EC.presence_of_element_located(toast_loc))
print(t) #若檢測到toast,則會輸出一句session資訊
print(driver.find_element_by_xpath(".//*[contains(@text,'您已處於')]").text) #若檢測到,輸出toast內容
except:
print("非開發者模式")
time.sleep(5)
def tearDown(self):
self.driver.quit()
os.system("adb shell input keyevent 26")
if __name__ == '__main__':
unittest.main()
同樣的程式碼在 Pixel 2XL (android 10) 上就可以正常執行;在 Pixel 2 (android 9) 上就報錯,搞了一段時間沒搞定,請各位出出招,謝謝!
相關文章
- springboot部署在伺服器上使用圖片上傳功能隔一段時間就會報錯Spring Boot伺服器
- 開發Android應用程式,在Android10的系統上提示網路出錯?Android
- 使用 MediaCodec 在 Android 上進行硬解碼Android
- Appium 1.17.1 使用 UiAutomator2 時出現 [INSTALL_PARSE_FAILED_NO_CERTIFICATES] 的錯誤APPUIAI
- Anbox:在 Linux 上執行 Android 應用程式的簡單方式LinuxAndroid
- 請問下後臺附件上傳提示沒有上傳的檔案是什麼原因呢? 謝謝
- Android 6.0 在執行時請求許可權Android
- 怎樣在windows上定時執行python指令碼WindowsPython指令碼
- 請問這個報錯該怎麼解決,謝謝
- Android進階:六、在子執行緒中直接使用 Toast 及其原理Android執行緒AST
- 谷歌10月9日在巴黎舉行新品釋出會 谷歌Pixel 3系列新機或亮相谷歌
- 關於 Appium 中 ios 自動化測試的幾個問題,請教下大神,謝謝APPiOS
- python+appium 在真機上執行到獲取螢幕大小的方法就報錯了,在夜神模擬器上沒有遇到過。有大佬遇到類似的問題?PythonAPP
- 在Android上優雅的申請許可權Android
- 收集所有能夠使用 for in 來遍歷的語言,謝謝各位大佬
- apscheduler 在伺服器上沒有按照指定的時間執行定時任務伺服器
- 【譯】Dagger2在Android中的使用Android
- 怎樣在 Kubernetes 上執行 PostgreSQLSQL
- Docker 教程:在 Mac M2 上執行 PostgreSQLDockerMacSQL
- 在 Android Studio 上除錯資料庫 ( SQLite )Android除錯資料庫SQLite
- 谷歌將於10月9日推出旗艦手機Pixel 3和Pixel 3 XL谷歌
- 在Android上使用JS引擎是一種什麼樣的體驗?AndroidJS
- 在 Android 上使用協程(三) :Real WorkAndroid
- 在 Android 上使用協程(一):Getting The BackgroundAndroid
- 在 Android 上使用協程(二):Getting startedAndroid
- 在IDEA上執行成功,打包成jar包後,執行報錯,程式自動退出IdeaJAR
- 在Android上安裝EntwareAndroid
- 像SpringMVC一樣在Android上做Web開發SpringMVCAndroidWeb
- 如何使用cron任務每隔2天在固定時間執行任務
- [譯] 在 Android 上實現 Google Inbox 的樣式動畫AndroidGo動畫
- 在VSCode上執行Python程式(Mac)VSCodePythonMac
- Appium v1.18.1 查詢 android 10 的 io\.appium\.settings 報錯,求助,感恩!!!APPAndroid
- 伺服器上的程式碼怎麼可以在本地測試執行Debug伺服器
- Android Studio在android Emulator中執行的專案黑屏Android
- Spark程式碼在叢集上執行過程理解Spark
- **java設定一段程式碼執行超時時間(轉)**Java
- App 自動化,Appium 憑什麼使用 UiAutomator2?APPUI
- react中在函式繫結時會馬上執行.沒有加括號不會馬上執行React函式