我在我的firebase控制台中创建了一个测试模板
Firebase - >测试实验室 - >模板
https://console.firebase.google.com/u/0/project/api-project-XXXXXX/testlab/templates?hl=en
使用模板名称 S7_API27_N5_API23
现在,我想使用命令行工具 gcloud 按名称选择此模板:
(这项工作):
document.getElementById("divid").onclick = function (e) {
if (e.target == document.getElementById("divid"))
$audioLifeLost.play();
}
这就是我要找的:
gcloud firebase test android run \
--type robo \
--app app/build/outputs/apk/productFlavor_Name/debug/My_Apk-debug.apk \
--device model=Nexus6,version=21,locale=en,orientation=portrait \
--timeout 90s
这可能吗?