详细信息:Appium的IosDriver不支持xcode版本8.3.2

时间:2017-05-15 16:26:16

标签: ios ruby mobile cucumber appium-ios

我在运行移动自动化测试时遇到了困难。 我收到以下错误

//Same error as above //Class not found $contact = Contact::where('id', '=', $id)->get(); $contact->delete();

我目前正在使用Xcode版本8.3.2和Appium版本1.0.0。

有人有任何建议吗?

2 个答案:

答案 0 :(得分:3)

在Xcode 8中,不推荐使用UIAutomation,它支持XCUITest。因此,如果您已将自动化名称所需的功能编写为UI自动化,请将其更改为:

desiredcapabilities.setCapability("automationName", "XCUITest");

此外,Xcode 8+仅适用于appium 1.6+。因此,请将您的Appium升级到最新版本。

参考:https://github.com/appium/appium-dot-app/issues/575

答案 1 :(得分:0)