Firebase Test Lab for Android Robo Test

Robo test is a test tool that is integrated with Firebase Test Lab for Android. Robo test analyzes the structure of your app's UI and then explores it methodically, automatically simulating user activities. Unlike the UI/Application Exerciser Monkey test, Robo test always simulates the same user activities in the same order when you use it to test an app on a specific device configuration with the same maximum depth and timeout settings. This lets you use Robo test to validate bug fixes and test for regressions in a way that isn't possible when testing with the UI/Application Exerciser Monkey test.

Robo test captures log files, saves a series of annotated screenshots, and then creates a video from those screenshots to show you the simulated user operations that it performed. These logs, screenshots, and videos can help you to determine the root cause if your app crashes, and can also help you to find issues with your app's UI.

Configuring Robo test

You can configure Robo test in a variety of ways:

  • Maximum depth. You can configure how deeply Robo test will explore your app by setting the maximum depth of the test. The maximum depth setting tells the test how thoroughly it should explore a particular branch of your app's UI before returning to the root of the UI (the main screen) to explore another branch. The default value for maximum depth is 50, and any value less than two will prevent the test from exploring the app beyond the main screen.

  • Timeout. Depending on the complexity of your app's UI, Robo test might take five minutes or more to complete a thorough set of UI interactions. We recommend setting the test timeout to at least 120 seconds (two minutes) for most apps, and 300 seconds (five minutes) for moderately complex apps. The default value for timeout is 300 seconds (five minutes) for tests run from Android Studio and the Google Developer Console, and 1500 seconds (25 minutes) for tests run from the gcloud command line.

If your app has both a UI with significant depth and multiple UI branches that Robo test should explore, then you should do one of the following to ensure that Robo test explores your app thoroughly:

  • Set a high value for timeout so that Robo test is able to explore multiple UI branches.

  • Set a low value for maximum depth so that Robo test completes some exploration of each UI branch.

Integration with Google Play

You can use Robo test in the Google Play Developer Console when you upload and publish your app's APK file using either the alpha or beta channel. Robo test runs on a set of popular physical devices from different geographic locations, providing test coverage across various form factors and hardware configurations. To learn more, see Use pre-launch reports to identify issues

Known Limitations

Robo test currently has the following known limitations:

  • UI framework support. Robo test is only compatible with apps that use UI elements from the Android UI framework (including View and ViewGroup objects). If you use Robo test to exercise apps that use other UI frameworks, including apps that use the Unity game engine, the test may exit without exploring beyond the first screen.
  • Sign-in. Robo test cannot bypass most sign-in screens. It can only bypass sign-in screens that use a Google account for authentication and require no additional user action to sign in.
  • Scripting. Robo test can't use a script to explore your app using a predefined sequence of simulated user actions.

Send feedback about...

Need help? Visit our support page.