Struct google_testing1::AndroidRoboTest
[−]
[src]
pub struct AndroidRoboTest {
pub robo_directives: Option<Vec<RoboDirective>>,
pub max_depth: Option<i32>,
pub app_apk: Option<FileReference>,
pub app_package_id: Option<String>,
pub app_initial_activity: Option<String>,
pub max_steps: Option<i32>,
}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
robo_directives: Option<Vec<RoboDirective>>
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
max_depth: Option<i32>
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
app_apk: Option<FileReference>
The APK for the application under test. Required
app_package_id: Option<String>
The java package for the application under test. Optional, default is determined by examining the application's manifest.
app_initial_activity: Option<String>
The initial activity that should be used to start the app. Optional
max_steps: Option<i32>
The max number of steps Robo can execute. Default is no limit. Optional
Trait Implementations
impl Default for AndroidRoboTest[src]
fn default() -> AndroidRoboTest[src]
Returns the "default value" for a type. Read more
impl Clone for AndroidRoboTest[src]
fn clone(&self) -> AndroidRoboTest[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more