Is it possible to test a React Native (Expo Managed) app using Firebase TestLab?
I have not succeeded. Several possible routes, none successful thus far:
1) Is it possible to force a Robo Test to keep running for a specified period of time? Currently, the default Robo Test runs only very briefly (<~1min) then terminates 'successfully'. If I could just get the test to continue for longer, I could run all of the needed testing internally within the app. The Game Loop approach doesn't appear to be viable for a React Native app.
2) Is it possible to create a Robo Script that selects UI elements by testID? In React Native the control over the native rendered elements is minimal. It is, however, possible to specify testID on elements.
3) Is it possible to use Android Studio to generate a Robo Script on a React Native (Expo) app? When I've tried, I can get the app to run using Android Studio->Firebase->Record Robo Script, but when I perform actions on the device, they are not logged in the scrip (actually, nothing is so no script is produced, just empty JSON).
Thank you