Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AndroidRoboTest

import type { AndroidRoboTest } from "https://googleapis.deno.dev/v1/toolresults:v1beta3.ts";

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

interface AndroidRoboTest {
appInitialActivity?: string;
bootstrapPackageId?: string;
bootstrapRunnerClass?: string;
maxDepth?: number;
maxSteps?: number;
}

§Properties

§
appInitialActivity?: string
[src]

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

§
bootstrapPackageId?: string
[src]

The java package for the bootstrap. Optional

§
bootstrapRunnerClass?: string
[src]

The runner class for the bootstrap. Optional

§
maxDepth?: number
[src]

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

§
maxSteps?: number
[src]

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