当前位置:   article > 正文

appium使用过程中的踩坑集_no route found for /wd/hub/session

no route found for /wd/hub/session

1. nodejs 版本不匹配问题
错误:
error: uncaughtException: Cannot find module ‘internal/fs’ date=Thu May 17 2018 20:39:28 GMT+0800 (中国标准时间), pid=8620, uid=null, gid=null, cwd=D:\appium\node_modules\appium, execPath=C:\Program Files\nodejs\node.exe, version=v10.0.3, argv=[C:\Program Files\nodejs\node.exe

解决方案:
nodejs和appium版本不匹配
appium的版本为1.4.16,对应的nodejs的版本是6.9.4
卸了nodejs重新装一个 v 6.9.4

2. 端口拒绝访问 
错误:
urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host=‘127.0.0.1’, port=4725): Max retries exceeded with url: /wd/hub/session (Caused by NewConnectionError(’<urllib3.connection.HTTPConnection object at 0x00000248683A6FD0>: Failed to establish a new connection: [WinError 10061] 由于目标计算机积极拒绝,无法连接。’,))

解决方案:
端口拒绝访问,原因可能有:
1) 端口被占用(找到端口被占用的进程,如果是残留进程则选择直接关闭;或者可以选择更换其他端口)
查看当前端口被什么进程占用的方法有很多,就不在这里介绍了
2) 端口服务未开启(未开启appium服务,或者开启appium服务的端口和访问的端口不一致)
appium客户端:

脚本代码:

driver=webdriver.Remote('http://127.0.0.1:4725/wd/hub',desired_caps)

检查这两者设置和访问的端口是否一致

3.Original error: Could not extract PIDs from ps output.
错误:
selenium.common.exceptions.SessionNotCreatedException: Message: A new session could not be created.
(Original error: Could not extract PIDs from ps output. PIDS: [], Procs: [“bad pid ‘uiautomator’”])

解决方案:
修改Appium\node_modules\appium\node_modules\appium-adb\lib\adb.js文件

  1. var procs = [];
  2. var outlines = stdout.split("\n");
  3. // 添加下面这行
  4. outlines.shift()


4.appium 运行时向手机安装的两个apk
分析:
Appium settings 用于设置网络状态
Unclock 用于自动解锁,在手机是滑动锁屏的情况下,则会自动解锁并启动apk,注意:图案锁屏与数字锁不可以自动解锁,只能是滑动锁屏

解决方案:
修改Appium\node_modules\appium\lib\devices\android\android.js文件

  1. Android.prototype.start = function (cb, onDie) {
  2. ······
  3. this.pushAppium.bind(this),
  4. this.initUnicode.bind(this),
  5. //this.pushSettingsApp.bind(this), 手动注释此2行代码,即可解决问题
  6. //this.pushUnlock.bind(this),
  7. function (cb) {this.uiautomator.start(cb);}.bind(this),
  8. ······


5. 找不到apk
错误:
selenium.common.exceptions.SessionNotCreatedException: Message: A new session could not be created. (Original error: Bad app: C:\Users\xxx\Downloads\com.tencent.mobileqq.apk. App paths need to be absolute, or relative to the appium server install dir, or a URL to compressed file, or a special app name. cause: Error: Error locating the app: ENOENT, stat ‘C:\Users\xxx\Downloads\com.tencent.mobileqq.apk’)

解决方案:
原因 可能是路径错了
如果路径正确的情况下,添加如下代码:

  1. PATH = lambda p: os.path.abspath(
  2. os.path.join(os.path.dirname(__file__), p)
  3. )
  4. desired_caps['app'] = PATH('×××(最好是相对路径,本人使用绝对路径失败了)/com.tencent.mobileqq.apk')


6. 缺少appActivity的参数
错误:
selenium.common.exceptions.SessionNotCreatedException: Message: A new session could not be created. (Original error: Parameter ‘appActivity’ is required for launching application)

解决方案:
找到apk的appActivity(传送门),然后再代码中添加

desired_caps['appActivity'] = 'com.tencent.mobileqq.activity.SplashActivity'



7. Requested a new session but one was in progress
错误:
selenium.common.exceptions.SessionNotCreatedException: Message: A new session could not be created. (Original error: Requested a new session but one was in progress)

解决方案:
在重新开启测试脚本时,已经有一session在执行还未关闭
关闭appium的服务,重新开启

8、解决Appium连接报错Could not find ‘apksigner.jar‘

搜索 :apksigner.jar(一般在Build Tools下)文件复制到platform-tools/下即可,其他文件也是这样处理

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/335649
推荐阅读
相关标签
  

闽ICP备14008679号