问题描述
当我单击 UI Automator 查看器时 --> 设备屏幕截图抛出错误无法连接到 adb.检查 adb 是否安装正确.
When I click on UI Automator viewer --> Device screenshot throws Error Unable to connect to adb. Check if adb is installed correctly.
我正在尝试运行它 Appium.我能够在模拟器中加载 apk,但由于 adb 连接错误而卡在 UI Automator 查看器上.
I am trying to run it Appium. I am able to load the apk in the emulator, stuck on the UI Automator viewer due to the adb connection error.
推荐答案
用文本编辑器(记事本/vim)打开uiautomatorviewer.bat.
Open with text editor (notepad/vim) the uiautomatorviewer.bat.
找到那一行:
call "%java_exe%" "-Djava.ext.dirs=%javaextdirs%" "-Dcom.android.uiautomator.bindir=%prog_dir%" -jar %jarpath% %*
并将其更改为 call "%java_exe%" "-Djava.ext.dirs=%javaextdirs%" "-Dcom.android.uiautomator.bindir=C:DEVandroidSDK ools" -jar %jarpath% %*
请注意,您应该将工具的路径放在 bindir 之后.
Please notice that you should put your Tools' path after the bindir.
这篇关于在 UI automator 查看器错误获取设备屏幕截图中,原因:错误无法连接到 adb.检查adb是否安装正确的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!