不使用模拟器的Appium iOS测试

时间:2016-10-25 17:38:38

标签: ios ios-simulator appium headless

是否可以在不使用真实设备或iOS模拟器的情况下运行iOS appium测试?使用某种或无头模式?

1 个答案:

答案 0 :(得分:0)

我怀疑" iOS模拟器"你的意思是Simulator.app。 Simulator.app只是系统的首选,您可以使用simctl命令行工具在模拟器中无头运行测试。

例如:

xcrun simctl boot <device UDID>
xcrun simctl install <device UDID> /path/to/app/to/install.app
xcrun simctl launch <device UDID> <app identifier>
xcrun simctl spawn <device UDID> /path/to/executable/to/spawn