Class AndroidRoboTest
A test of an android application that explores the application on a virtual or physical Android Device, finding culprits and crashes as it goes.
Implements
Inherited Members
Namespace: Google.Apis.Testing.v1.Data
Assembly: Google.Apis.Testing.v1.dll
Syntax
public class AndroidRoboTest : IDirectResponseSchema
Properties
AppApk
The APK for the application under test.
Declaration
[JsonProperty("appApk")]
public virtual FileReference AppApk { get; set; }
Property Value
Type | Description |
---|---|
FileReference |
AppBundle
A multi-apk app bundle for the application under test.
Declaration
[JsonProperty("appBundle")]
public virtual AppBundle AppBundle { get; set; }
Property Value
Type | Description |
---|---|
AppBundle |
AppInitialActivity
The initial activity that should be used to start the app.
Declaration
[JsonProperty("appInitialActivity")]
public virtual string AppInitialActivity { get; set; }
Property Value
Type | Description |
---|---|
string |
AppPackageId
The java package for the application under test. The default value is determined by examining the application's manifest.
Declaration
[JsonProperty("appPackageId")]
public virtual string AppPackageId { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
MaxDepth
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.
Declaration
[JsonProperty("maxDepth")]
public virtual int? MaxDepth { get; set; }
Property Value
Type | Description |
---|---|
int? |
MaxSteps
The max number of steps Robo can execute. Default is no limit.
Declaration
[JsonProperty("maxSteps")]
public virtual int? MaxSteps { get; set; }
Property Value
Type | Description |
---|---|
int? |
RoboDirectives
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.
Declaration
[JsonProperty("roboDirectives")]
public virtual IList<RoboDirective> RoboDirectives { get; set; }
Property Value
Type | Description |
---|---|
IList<RoboDirective> |
RoboMode
The mode in which Robo should run. Most clients should allow the server to populate this field automatically.
Declaration
[JsonProperty("roboMode")]
public virtual string RoboMode { get; set; }
Property Value
Type | Description |
---|---|
string |
RoboScript
A JSON file with a sequence of actions Robo should perform as a prologue for the crawl.
Declaration
[JsonProperty("roboScript")]
public virtual FileReference RoboScript { get; set; }
Property Value
Type | Description |
---|---|
FileReference |
StartingIntents
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).
Declaration
[JsonProperty("startingIntents")]
public virtual IList<RoboStartingIntent> StartingIntents { get; set; }
Property Value
Type | Description |
---|---|
IList<RoboStartingIntent> |