通过终端在Xcode 8中创建UI测试

时间:2016-12-22 03:59:06

标签: ios xcode xcode-ui-testing

有没有办法通过终端在Xcode8中实际创建UI测试?我知道UI测试通常是通过Xcode本身创建的,但我想通过终端来完成并自动完成整个过程。谢谢!

1 个答案:

答案 0 :(得分:0)

您可以使用xcodebuild命令在Xcode中运行测试。

像:

xcodebuild -workspace ${WORKSPACE_NAME} \
 -scheme ${SCHEME_NAME} \
 -destination "${DESTINATION}" \
 -derivedDataPath "${OUT_PATH}" \
 test

不要忘记设置共享方案​​。