我有一个ios项目,我已经编写了我的ios ui测试用例。
现在我已经创建了另一个osx(swift)命令行工具,在主文件中,我想运行我的ios项目ui测试。
为此,我使用以下命令:
Stream
如果我从终端运行此命令,则ios项目ui test正常运行。
但是,如果我从我的osx命令行工具swift文件(在新的OSX项目中)运行命令,则显示错误。代码是
xcodebuild test -project /Users/usernamer/Desktop/Xocde/ios-ui-automation-demo-master/ios-ui-automation-demo.xcodeproj -scheme ios-ui-automation-demo -destination 'platform=iOS Simulator,name=iPad Air'
此代码显示以下错误:
import Foundation
func shell(args: String...) -> Int32 {
let task = NSTask()
task.launchPath = "/usr/bin/xcodebuild"
task.arguments = args
task.currentDirectoryPath = "/Users/username/Desktop/Xocde/ios-ui-automation-demo-master/"
task.launch()
task.waitUntilExit()
return task.terminationStatus
}
print("This is test version edit")
shell("xcodebuild test -project /Users/username/Desktop/Xocde/ios-ui-automation-demo-master/ios-ui-automation-demo.xcodeproj -scheme ios-ui-automation-demo -destination 'platform=iOS Simulator,name=iPad Air'")
我已经完成了这个Xcode 7.2 no matching provisioning profiles found
但没办法,请帮帮我,我的错误是什么。
我正在使用swift 2.2 xcode 7.3
答案 0 :(得分:1)
在http://developer.apple.com处查看您的苹果开发者页面。
如果没有,请创建一个。