In UI automator viewer Error Obtaining Device screenshot, Reason : Error Unable to connect to adb. Check if adb is installed correctly(在 UI automator 查看器错误获取设备屏幕截图中,原因:错误无法连接到 adb.检查adb是否安装正确)
问题描述
当我单击 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是否安装正确的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 UI automator 查看器错误获取设备屏幕截图中,原因:错误无法连接到 adb.检查adb是否安装正确
基础教程推荐
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
