从XCTestCase打开Safari

时间:2017-10-02 20:46:21

标签: ios swift xcode safari xctest

根据Apple's documentaion,我应该能够使用以下代码根据其捆绑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

1 个答案:

答案 0 :(得分:1)

此功能从Xcode 9 SDK开始提供,因此您需要更新Xcode版本并迁移到Swift 3.2或4。

来源:https://developer.apple.com/documentation/xctest/xcuiapplication/2879415-init