以下是我的代码和错误sin appium控制台的链接 和eclipse控制台:
Link to the code and error in eclipse console and appium console
答案 0 :(得分:0)
如果你检查Appium日志,那里就有这一行 -
info: [debug] The following desired capabilities were provided, but not recognized by appium. They will be passed on to any other services running on this server. : version
这意味着版本不是正确的属性名称。您必须将其更改为platformVersion
。尝试更改它,看它是否有效。代码行将是这样的 -
capabilities.setCapability("platformVersion", "7.0");
此外,无需提供浏览器名称,因为您没有在任何地方使用它。但这不应该以任何方式影响测试脚本的执行。
您还可以查看此文章,其中显示了可用于启动应用的功能 - Appium Script to Launch App