大家新年好! 请问下大家的http://localhost:4723/wd/hub这个文件能打开吗? appium 启动后,一访问是 404,不知道原因何在。。
再加一张截图
正常
#2 楼 @seveniruby 这是正常现象吗? 那我执行脚本时出现错误。
这个错误是在 unknownCommand 的时候抛出来的。
exports.unknownCommand = function (req, res) { logger.info("Responding to client that we did not find a valid resource"); res.set('Content-Type', 'text/plain'); res.send(404, "That URL did not map to a valid JSONWP resource"); };
你直接访问 http://localhost:4723/wd/hub, 当然会出这个错误,因为没有 routing 对应。
至于脚本为啥出错,需要更多的信息。
你的问题解决了吗,我遇到了同样的问题