Using Instruments to test an iOS app without having source code to the application(在没有应用程序源代码的情况下使用 Instruments 测试 iOS 应用程序)
问题描述
我想通过 Xcode 中的 Instruments 使用 UIAutomation 在我的 iOS 设备上测试应用程序.是否可以在无需构建源代码的情况下这样做?这样做的原因是我们的团队将有测试人员编写自动化脚本来测试我们设备上的应用程序,但我们不希望他们都通过同步到最新版本并通过 Xcode 编译它.有谁知道这是否可以通过 UIAutomation 或可能通过 3rd 方应用程序实现?
I would like to use UIAutomation via Instruments in Xcode to test an app on my iOS device. Is it possible to do so without having to build the source code? The reason for this is that our team will have testers who will be writing automation scripts to test the apps on our devices, but we don't want them to all go through syncing to latest builds and compiling it through Xcode. Does anyone know if this is possible through UIAutomation or possibly through a 3rd party application?
谢谢.
推荐答案
你可以在没有源代码的情况下进行 UIAutomation 测试,但是你不会看到你的符号,你也看不到你的代码挂在哪里.
You could make UIAutomation tests without the source code, but you will not see your symbols and you cant see where in your code your app is hanging.
您仍然可以查看是否有需要很长时间才能运行的例程,但您将无法看到女巫或调用堆栈
You still can see if there is a routine that is taking to long to run, but you wont e able to see witch one or the call stack
要在没有源代码的情况下进行测试,只需打开自动机并将测试与设备上安装的应用程序绑定
to make your tests without the source code just open the automator and bind your test with an application installed on the device
这篇关于在没有应用程序源代码的情况下使用 Instruments 测试 iOS 应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在没有应用程序源代码的情况下使用 Instruments 测
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- Android - 拆分 Drawable 2022-01-01
