create UI Test in Xcode 8 via terminal

210 Views Asked by At

Is there a way to actually create UI Tests in Xcode8 via the terminal? I am aware that UI Tests are usually created via Xcode itself but i would like to do it via the terminal and automate the whole process. Thanks!

1

There are 1 best solutions below

1
On

you can use xcodebuild command to run the test in Xcode.

like:

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

do not forget to set the scheme shared.