当我将我的应用程序的新版本上传到Google Play时,我得到了一个非常好且很好的预发布测试报告,但问题是大多数时候AI只是在设置周围徘徊而不测试实际的UI。我想为这些设备快速随机地预先完成设置。
所以我的问题是,有没有办法检测它是否在那些测试设备上运行?
答案 0 :(得分:9)
您可以使用以下方法检测预启动测试设备:
private boolean isTestDevice() {
String testLabSetting = Settings.System.getString(getContentResolver(), "firebase.test.lab");
return "true".equals(testLabSetting);
}
答案 1 :(得分:1)
如果有人来这里寻找如何使用 React Native 执行此操作,请查看 react-native-firebase 包 utils().isRunningInTestLab
:https://rnfirebase.io/app/utils#test-lab。