Firebase 会为其他 OS 提供测试吗?它是否支持手动测试?
Will Firebase provide tests for other OS and does it support manual testing?
我看到 firebase 提供了只能测试 Android 设备的测试实验室。我想知道 Firebase 是否还会支持其他 OS(Windows, Blackberry, IOS) 测试?另外Fire base是否会提供手动测试,直接通过触摸动作测试应用程序?(这在模拟器中可能吗?)
Android 的 Firebase 测试实验室(顾名思义)仅适用于 Android。目前不支持其他操作系统。
由于测试 运行 在远程实验室中进行,因此您无法真正 手动 运行 这些测试。但是你可以手动做的是record a test in Android Studio. This feature was added in Android Studio 2.2 and allow you to record a Espresso test, simply by using your application. You can then run this Espresso test in Firebase Test Lab。
我看到 firebase 提供了只能测试 Android 设备的测试实验室。我想知道 Firebase 是否还会支持其他 OS(Windows, Blackberry, IOS) 测试?另外Fire base是否会提供手动测试,直接通过触摸动作测试应用程序?(这在模拟器中可能吗?)
Android 的 Firebase 测试实验室(顾名思义)仅适用于 Android。目前不支持其他操作系统。
由于测试 运行 在远程实验室中进行,因此您无法真正 手动 运行 这些测试。但是你可以手动做的是record a test in Android Studio. This feature was added in Android Studio 2.2 and allow you to record a Espresso test, simply by using your application. You can then run this Espresso test in Firebase Test Lab。