I create in my firebase console a Test Template
Firebase -> Test Lab -> Templates
https://console.firebase.google.com/u/0/project/api-project-XXXXXX/testlab/templates?hl=en
With a template name S7_API27_N5_API23
Now I like to select this template by name in with the command line tool gcloud like :
(this work's) :
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
This is what I am looking for :
gcloud firebase test android run \
--type robo \
--app app/build/outputs/apk/productFlavor_Name/debug/My_Apk-debug.apk \
--templatename S7_API27_N5_API23 \
--timeout 90s
Is this possible ?