我在运行移动自动化测试时遇到了困难。 我收到以下错误
//Same error as above
//Class not found
$contact = Contact::where('id', '=', $id)->get();
$contact->delete();
我目前正在使用Xcode版本8.3.2和Appium版本1.0.0。
有人有任何建议吗?
答案 0 :(得分:3)
在Xcode 8中,不推荐使用UIAutomation,它支持XCUITest。因此,如果您已将自动化名称所需的功能编写为UI自动化,请将其更改为:
desiredcapabilities.setCapability("automationName", "XCUITest");
此外,Xcode 8+仅适用于appium 1.6+。因此,请将您的Appium升级到最新版本。
答案 1 :(得分:0)
The error message tells you that the IosDriver is deprecated. Take a look here: https://discuss.appium.io/t/xcodebuild-failed-with-code-65-warning-the-server-did-not-provide-any-stacktrace-information-command-duration-or-timeout-32-63-seconds/12756/4