Struct google_testing1::AndroidRoboTest[][src]

pub struct AndroidRoboTest {
    pub robo_directives: Option<Vec<RoboDirective>>,
    pub robo_script: Option<FileReference>,
    pub app_apk: Option<FileReference>,
    pub max_depth: Option<i32>,
    pub starting_intents: Option<Vec<RoboStartingIntent>>,
    pub max_steps: Option<i32>,
    pub app_package_id: Option<String>,
    pub app_initial_activity: Option<String>,
}

A test of an android application that explores the application on a virtual or physical Android Device, finding culprits and crashes as it goes.

This type is not used in any activity, and only used as part of another schema.

Fields

A set of directives Robo should apply during the crawl. This allows users to customize the crawl. For example, the username and password for a test account can be provided. Optional

A JSON file with a sequence of actions Robo should perform as a prologue for the crawl. Optional

The APK for the application under test.

The max depth of the traversal stack Robo can explore. Needs to be at least 2 to make Robo explore the app beyond the first activity. Default is 50. Optional

The intents used to launch the app for the crawl. If none are provided, then the main launcher activity is launched. If some are provided, then only those provided are launched (the main launcher activity must be provided explicitly).

The max number of steps Robo can execute. Default is no limit. Optional

The java package for the application under test. Optional, default is determined by examining the application's manifest.

The initial activity that should be used to start the app. Optional

Trait Implementations

impl Default for AndroidRoboTest
[src]

Returns the "default value" for a type. Read more

impl Clone for AndroidRoboTest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AndroidRoboTest
[src]

Formats the value using the given formatter. Read more

impl Part for AndroidRoboTest
[src]

Auto Trait Implementations