I am trying to run a Robo test in Firebase Test Lab. I want to specify a login username for the app. The app is built using React Native. Below is the login screen for the app
The app is built using react-native. I found the resource name for the User Name
text input field using Layout Inspector in Android Studio. Below is a screen of the Layout Inspector for the above screen.
The mID
for the text input field is specified as id/0xF
. I specified this as the username resource in the test account details and specified a valid value in the value field as shown below
When I ran the test, the username was not specified and hence the test never went past this screen.
How do I specify the username in the Test Lab such that the test can go past this screen and test the actual app?