我面临一个最终导致以下错误的问题 -
The bundle “$(PRODUCT_NAME)” couldn’t be loaded because its executable couldn’t be located. Try reinstalling the bundle.
Error Domain=IDETestOperationsObserverErrorDomain Code=6 "Early unexpected exit, operation never finished bootstrapping - no restart will be attempted" UserInfo=
{NSLocalizedDescription=Early unexpected exit, operation never finished bootstrapping - no restart will be attempted}
我一直在努力使我的 UITest 自动化,但我间歇性地(尽管 80% 的时间)面临上述问题。
我正在从命令行使用以下命令。
xcodebuild -project Commute.xcodeproj -scheme CommuteUITests -configuration Debug test -destination "platform=iOS,name=$DEVICE_NAME" -derivedDataPath $DERIVED_DATA_DIR -only-testing:CommuteUITests/$SUITE .
一切都有通常的含义,但这会导致上述错误,而且我有时会提供多个目的地。
另一方面,我想运行 .ipa 而不是通过源代码构建。
所以基本上这里有两个问题 -
- 为什么我会收到这些错误,我在互联网上徘徊,但我无法找到解决方案?
- 如何开始我的测试以测试 .ipa?
有人请帮助我,我被困在这里很长时间,非常感谢任何帮助/指针。