- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我要在本地运行 espresso 测试并传递环境变量我可以通过添加
defaultConfig {
testInstrumentationRunnerArgument 'USERNAME' 'David'
}
在build.gradle 文件
然后我可以调用这个变量
InstrumentationRegistry.getArguments().getString("USERNAME")
但是当我在 firebase teSTLab 上运行它时instrumentationrunner 参数不起作用
最佳答案
这在测试实验室中不受支持。
如果您真的需要这样做,可以通过覆盖测试运行器并使用测试运行器“环境变量”传递这些键值对来解决。
覆盖测试运行器:
public class MyTestRunner extends AndroidJUnitRunner {
public static String USERNAME;
@Override
public void onCreate(Bundle arguments) {
super.onCreate(arguments);
USERNAME = arguments.getString("USERNAME");
}
}
在 build.gradle
文件中使用 MyTestRunner
:
defaultConfig {
testInstrumentationRunner "com.example.myapp.MyTestRunner"
}
使用 gcloud
命令行应用在 Firebase 中开始测试。这是您传递参数的地方:
gcloud firebase test android run \
--type instrumentation \
--app debug/app-debug.apk \
--test androidTest/debug/app-debug-androidTest.apk \
--environment-variables "USERNAME=david" \
--device model=walleye,version=28
关于android - 如何为 firebase teSTLab 添加 testInstrumentation 环境变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53295135/
如果我要在本地运行 espresso 测试并传递环境变量我可以通过添加 defaultConfig { testInstrumentationRunnerArgument 'USERNAME' 'D
我正在尝试使用本指南在 iOS 上使用 firebase TestLab: https://firebase.google.com/docs/test-lab/ios/firebase-console
我尝试在 firebase TestLab 上为我的 React Native 应用程序运行机器人测试,但无法登录机器人测试通行证。 第一个问题是它没有输入电子邮件和密码。 在我的 js 文件中,我有
是否可以使用 Firebase TestLab 测试 React Native(Expo 托管)应用? 我还没有成功。几种可能的路线,到目前为止还没有成功: 1) 是否可以强制 Robo 测试在指定的
我正在尝试使用带有仪器测试类型的 firebase 测试实验室使用我的演示应用程序进行测试,但由于以下与 apk 相关的错误,我无法进行测试。 我在那里上传了 debug-keystore 签名的 a
我正在尝试在 Firebase TestLab 上使用 RoboScript 测试基于 Google map 的 Android 应用程序。默认情况下,位置在 TestLab 设备上是禁用的。要启用它
我用 Espresso Recorder 录制了一份 Espresso 测试。我想在我的应用中测试一些位置变化。 目前我正在用这段代码模拟位置: LocationManager lm = (Locat
我在 Firebase 中使用测试实验室,我发现的问题与 iOS 中的结果有关,因为它没有显示我的集成测试中的所有用例。 这是我在 Android 中的结果,我可以在 TestLab 中看到所有用例。
我是一名优秀的程序员,十分优秀!