在AWS Device Farm上执行iOS Appium TestNG测试用例时,获取“ org.openqa.selenium.WebDriverException”

时间:2019-02-10 10:14:56

标签: appium-ios aws-device-farm

我正在使用Appium版本1.9.1和基于Appium Java TestNG构建的框架,但是当我在真实设备上的AWS Device Farm上执行i时,出现以下错误:

org.openqa.selenium.WebDriverException:处理命令时发生未知服务器端错误。原始错误:未处理的端点:/ session / BC6E4901-43A6-4C66-913A-EBAF8482DD4B / wda / screen-http://127.0.0.1:8100/,参数为{     通配符=(         “会话/ BC6E4901-43A6-4C66-913A-EBAF8482DD4B / wda /屏幕”     ); }

相同的测试用例在本地计算机上可以正常工作。请为上述问题提供解决方案。

1 个答案:

答案 0 :(得分:0)

嗯,我想我知道原因。我不知道Device Farm的标准环境中的WDA版本。但是,在自定义环境中,它实际上引用了WDA的两个不同版本。

测试规范摘要

  # The environment variables below will be auto-populated during run time.
  - echo "Start appium server"
  # The default WDA used is at DEVICEFARM_WDA_DERIVED_DATA_PATH_V1 (Supports versions iOS 12 and below), it is using commit f865d3. See (https://github.com/appium/appium-xcuitest-driver/tree/f865d32e78a5a8a15469bee30ed2f985d378575d)
  # If you need an older WDA version or need support for node modules, use the WDA at DEVICEFARM_WDA_DERIVED_DATA_PATH_V0. (This version does not suport iOS 12)

因此,如果您使用自定义环境,则/ screen端点应该存在。

您可以试一下,让我知道结果吗?

How to schedule a run

HTH

-詹姆斯