python uiautomator obtaining UI hierarchy Remote object does
未知
2021-09-22 10:04:44
0次
问题描述:
打开C:\Users\Administrator\AppData\Local\Android\android-sdk\tools 下面的uiautomatorviewer.bat使用第三个按钮点击出画面时报错:Error obtaining UI hierarchy Error while obtaining UI hierarchy XML file: com.android.ddmlib.SyncException: Remote object doesn’t exist
解决办法:
可以在windows中cmd使用命令
adb kill-server
adb start-server
重启 adb 服务可解决问题
可以在linux使用命令
sudo adb kill-server
sudo adb start-server
重启 adb 服务可解决问题
相关内容