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/testing:v1.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 {
appApk?: FileReference;
appBundle?: AppBundle;
appInitialActivity?: string;
appPackageId?: string;
maxDepth?: number;
maxSteps?: number;
roboDirectives?: RoboDirective[];
roboMode?: "ROBO_MODE_UNSPECIFIED" | "ROBO_VERSION_1" | "ROBO_VERSION_2";
roboScript?: FileReference;
startingIntents?: RoboStartingIntent[];
}

§Properties

§

The APK for the application under test.

§
appBundle?: AppBundle
[src]

A multi-apk app bundle for the application under test.

§
appInitialActivity?: string
[src]

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

§
appPackageId?: string
[src]

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

§
maxDepth?: number
[src]

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.

§
maxSteps?: number
[src]

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

§
roboDirectives?: RoboDirective[]
[src]

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.

§
roboMode?: "ROBO_MODE_UNSPECIFIED" | "ROBO_VERSION_1" | "ROBO_VERSION_2"
[src]

The mode in which Robo should run. Most clients should allow the server to populate this field automatically.

§
roboScript?: FileReference
[src]

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

§
startingIntents?: RoboStartingIntent[]
[src]

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).