根据Apple's documentaion,我应该能够使用下面的代码基于其bundle ID启动一个应用程序。

// Open safariapp
let safariApp = XCUIApplication(bundleIdentifier: "com.apple.mobilesafari")

// Launch safari app
safariApp.launch()

不幸的是,这段代码不会编译,因为Xcode声称XCUIApplication不能接受任何初始化参数。这是我的错误:
Argument passed to call that takes no arguments

最佳答案

此功能从Xcode 9 SDK开始提供,因此您需要更新Xcode版本并迁移到Swift 3.2或4。
来源:https://developer.apple.com/documentation/xctest/xcuiapplication/2879415-init

关于ios - 从XCTestCase打开Safari,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46533496/

10-09 06:31