首页 > 其他分享 >aapium报错 An unknown server-side error occurred while processing the command. Original error: Could

aapium报错 An unknown server-side error occurred while processing the command. Original error: Could

时间:2023-06-16 09:56:51浏览次数:40  
标签:exe processing adb error device 报错 模拟器

现象:

1、appium日志存在报错信息:

(1)中间:adb failed to start daemon *

(2)结尾:POST /wd/hub/session 500 287ms

2、appium图形界面设置参数后,点击start session报错提示

An unknown server-side error occurred while processing the command. Original error: Could not find a connected Android device in 21723ms.

3、执行adb shell

提示:error:device not found

 

 

原因:

adb.exe出问题,无法成功连接设备

 

解决方案:

1、打开夜神模拟器

2、运行cmd,cd到夜神模拟器安装目录的bin文件夹下

3、执行nox_adb connect 127.0.0.1:62001连接到模拟器

4、执行adb shell,发现可以正常连接(说明模拟器的adb程序没有问题,将android sdk目录下的adb程序替换即可)

5、将模拟器下的nox_adb.exe复制到桌面,并改名为adb.exe

6、复制到AndroidSdk目录下的platform-tools文件中,替换原有的adb.exe

7、重新cmd,连接设备(adb connect),而后执行adb shell,无报错信息

8、重新执行程序,即可成功调起指定的app页面

标签:exe,processing,adb,error,device,报错,模拟器
From: https://www.cnblogs.com/feizaiya/p/17484790.html

相关文章

  • 报错:resolution will not be reattempted until the update interval of XXX has elap
     含义:在XXX的更新间隔过去或强制更新之前,不会重新尝试解析。如果你去本地的maven仓库,你会发现,其只有lastUpdate结尾的文件,没有jar包。这个时候,你无论怎么点击IDEA中的ReimportsAllMavenProjects都是没有用的。原因上面也说了,要么等更新时间过去,要么强制更新。maven的默认......
  • 高德地图 报错 USERKEY_PLAT_NOMATCH
    查过文档后发现    ......
  • 解决SyntaxError: Generator expression must be parenthesized
    在创建django的app时出现问题: 是因为python3.8与django1.11不兼容。解决办法,打开"F:\python\lib\site-packages\django\contrib\admin\widgets.py"这个文件,去掉'%s=%s'%(k,v)fork,vinparams.items(), 这一句末尾的逗号即可。 ......
  • golang之errors包
    errors包常用方法funcUnwrap(errerror)error//获得err包含下一层错误funcIs(err,targeterror)bool//判断err是否包含targetfuncAs(errerror,targetinterface{})bool//判断err是否为target类型   自定义错误信息err......
  • Linux下引用模块报错Error: Cannot find module
    1,问题描述在Linux中执行js文件,因文件中引用了crypto-js,但是在Linux环境中报错找不到这个模块//适配多个解密constCryptoJS=require("crypto-js");//constCryptoJS=require("/usr/local/lib/node_modules/crypto-js");var_0x14e728=newDate();functionhash(type,......
  • [问题解决]:ImportError: /home/test/anaconda3/envs/py39/bin/../lib/libstdc++.so.6
    报错(py39)test@test:~/code/Face/test_speed$pythonface_yaw_pitc_roll.pyTraceback(mostrecentcalllast):File"/home/test/code/Face/test_speed/face_yaw_pitc_roll.py",line17,in<module>importdlibFile"/home/test/anacon......
  • xtrabackup 备份从库报错,原因是uper_read_only =ON
    ########################MySQL版本:8.0.26xtrabackup备份从库报错,官方bug:https://bugs.mysql.com/bug.php?id=104573问题描述:xtrabackup报错Undotablespacenumber1wasbeingtruncatedwhenmysqldquit.Cannotrecoveratruncatedundotablespaceinread-onlymod......
  • mysql 报错 :The table xxx is full
    ############################################现象:用户执行的sql语句报错:Cause:java.sql.SQLException:Thetable'/home/work/mysql_3306//tmp/#sql117f0c_db7113_a4'isfull 原因:参数internal_tmp_mem_storage_engine是默认值TempTable,当临时表大小超过temptable_m......
  • npm publish 发包报错npm ERR! 403 403 Forbidden - PUT https://registry.npmjs.org/
    如果出现在发布的时候报这个错,说明你在package.json中登记的name已近被采用了。重名了,所以你得换一个。我们在发布一个包之前,最好拿着这个登记的name去搜一下,如果已近有了,那就要换一个。......
  • pyautogui.screenshot('test.png') 报错:PyAutoGUI was unable to import pyscreeze (T
    根据提示需要importpyscreeze还需要Pillow.通过pip3list可以查看到已经安装PyScreeze==0.1.29但是不是我手动安装的,应该是Pillow或者pyautogui下载的时候依赖了pyscreeze并且安装了最新版本0.1.29。通过依赖树可以看到是pyautogui依赖了sudopip3installpipdeptree安装查......