AndroidRoboTestArgs

data class AndroidRoboTestArgs(val appInitialActivity: Output<String>? = null, val bootstrapPackageId: Output<String>? = null, val bootstrapRunnerClass: Output<String>? = null, val maxDepth: Output<Int>? = null, val maxSteps: Output<Int>? = null) : ConvertibleToJava<AndroidRoboTestArgs>

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

Constructors

Link copied to clipboard
fun AndroidRoboTestArgs(appInitialActivity: Output<String>? = null, bootstrapPackageId: Output<String>? = null, bootstrapRunnerClass: Output<String>? = null, maxDepth: Output<Int>? = null, maxSteps: Output<Int>? = null)

Functions

Link copied to clipboard
open override fun toJava(): AndroidRoboTestArgs

Properties

Link copied to clipboard
val appInitialActivity: Output<String>? = null

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

Link copied to clipboard
val bootstrapPackageId: Output<String>? = null

The java package for the bootstrap. Optional

Link copied to clipboard
val bootstrapRunnerClass: Output<String>? = null

The runner class for the bootstrap. Optional

Link copied to clipboard
val maxDepth: Output<Int>? = null

The max depth of the traversal stack Robo can explore. Optional

Link copied to clipboard
val maxSteps: Output<Int>? = null

The max number of steps/actions Robo can execute. Default is no limit (0). Optional