1. appium:Logcat capture failed: spawn ENOENT
在windows中使用appium后报错,导致python程序无法执行。错误的信息参考:https://testerhome.com/topics/2280
有几个重要信息:
(1)warn: The ANDROID_HOME environment variable is not set to
the Android SDK root directory path. ANDROID_HOME is required for
compatibility with SDK 23+. Checking along PATH for adb.
(2)error: Logcat capture failed: spawn ENOENT
解决方案:
(1)网上的解决方法都是说是因为android
sdk的路径中有空格,导致appium无法识别。我检查了下发现我的电脑没有这个问题。
(2)于是重点关注log中的warn信息,说的是环境变量中没有ANDROID_HOME。于是我在PATH中添加了这个路径,重启cmd运行python脚本,结果发现还有这个问题,怎么改环境变量都不行,appium服务端还是报上面的错误信息。原因在于:appium
server也需要重启!!
网友评论