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

Run

import type { Run } from "https://aws-api.deno.dev/v0.3/services/devicefarm.ts?docs=full";

Represents a test run on a set of devices with a given app package, test parameters, and so on.

interface Run {
appUpload?: string | null;
arn?: string | null;
billingMethod?: BillingMethod | null;
completedJobs?: number | null;
counters?: Counters | null;
created?: Date | number | null;
customerArtifactPaths?: CustomerArtifactPaths | null;
deviceMinutes?: DeviceMinutes | null;
devicePoolArn?: string | null;
deviceSelectionResult?: DeviceSelectionResult | null;
eventCount?: number | null;
jobTimeoutMinutes?: number | null;
locale?: string | null;
location?: Location | null;
message?: string | null;
name?: string | null;
networkProfile?: NetworkProfile | null;
parsingResultUrl?: string | null;
platform?: DevicePlatform | null;
radios?: Radios | null;
result?: ExecutionResult | null;
resultCode?: ExecutionResultCode | null;
seed?: number | null;
skipAppResign?: boolean | null;
started?: Date | number | null;
status?: ExecutionStatus | null;
stopped?: Date | number | null;
testSpecArn?: string | null;
totalJobs?: number | null;
type?: TestType | null;
webUrl?: string | null;
}

§Properties

§
appUpload?: string | null
[src]

An app to upload or that has been uploaded.

§
arn?: string | null
[src]

The run's ARN.

§
billingMethod?: BillingMethod | null
[src]

Specifies the billing method for a test run: metered or unmetered. If the parameter is not specified, the default value is metered.

Note: If you have unmetered device slots, you must set this to unmetered to use them. Otherwise, the run is counted toward metered device minutes.

§
completedJobs?: number | null
[src]

The total number of completed jobs.

§
counters?: Counters | null
[src]

The run's result counters.

§
created?: Date | number | null
[src]

When the run was created.

§
customerArtifactPaths?: CustomerArtifactPaths | null
[src]

Output CustomerArtifactPaths object for the test run.

§
deviceMinutes?: DeviceMinutes | null
[src]

Represents the total (metered or unmetered) minutes used by the test run.

§
devicePoolArn?: string | null
[src]

The ARN of the device pool for the run.

§
deviceSelectionResult?: DeviceSelectionResult | null
[src]

The results of a device filter used to select the devices for a test run.

§
eventCount?: number | null
[src]

For fuzz tests, this is the number of events, between 1 and 10000, that the UI fuzz test should perform.

§
jobTimeoutMinutes?: number | null
[src]

The number of minutes the job executes before it times out.

§
locale?: string | null
[src]

Information about the locale that is used for the run.

§
location?: Location | null
[src]

Information about the location that is used for the run.

§
message?: string | null
[src]

A message about the run's result.

§
name?: string | null
[src]

The run's name.

§
networkProfile?: NetworkProfile | null
[src]

The network profile being used for a test run.

§
parsingResultUrl?: string | null
[src]

Read-only URL for an object in an S3 bucket where you can get the parsing results of the test package. If the test package doesn't parse, the reason why it doesn't parse appears in the file that this URL points to.

§
platform?: DevicePlatform | null
[src]

The run's platform.

Allowed values include:

  • ANDROID
  • IOS
§
radios?: Radios | null
[src]

Information about the radio states for the run.

§
result?: ExecutionResult | null
[src]

The run's result.

Allowed values include:

  • PENDING
  • PASSED
  • WARNED
  • FAILED
  • SKIPPED
  • ERRORED
  • STOPPED
§
resultCode?: ExecutionResultCode | null
[src]

Supporting field for the result field. Set only if result is SKIPPED. PARSING_FAILED if the result is skipped because of test package parsing failure.

§
seed?: number | null
[src]

For fuzz tests, this is a seed to use for randomizing the UI fuzz test. Using the same seed value between tests ensures identical event sequences.

§
skipAppResign?: boolean | null
[src]

When set to true, for private devices, Device Farm does not sign your app again. For public devices, Device Farm always signs your apps again.

For more information about how Device Farm re-signs your apps, see Do you modify my app? in the AWS Device Farm FAQs.

§
started?: Date | number | null
[src]

The run's start time.

§
status?: ExecutionStatus | null
[src]

The run's status.

Allowed values include:

  • PENDING
  • PENDING_CONCURRENCY
  • PENDING_DEVICE
  • PROCESSING
  • SCHEDULING
  • PREPARING
  • RUNNING
  • COMPLETED
  • STOPPING
§
stopped?: Date | number | null
[src]

The run's stop time.

§
testSpecArn?: string | null
[src]

The ARN of the YAML-formatted test specification for the run.

§
totalJobs?: number | null
[src]

The total number of jobs for the run.

§
type?: TestType | null
[src]

The run's type.

Must be one of the following values:

  • BUILTIN_FUZZ
  • BUILTIN_EXPLORER Note: For Android, an app explorer that traverses an Android app, interacting with it and capturing screenshots at the same time.
  • APPIUM_JAVA_JUNIT
  • APPIUM_JAVA_TESTNG
  • APPIUM_PYTHON
  • APPIUM_NODE
  • APPIUM_RUBY
  • APPIUM_WEB_JAVA_JUNIT
  • APPIUM_WEB_JAVA_TESTNG
  • APPIUM_WEB_PYTHON
  • APPIUM_WEB_NODE
  • APPIUM_WEB_RUBY
  • CALABASH
  • INSTRUMENTATION
  • UIAUTOMATION
  • UIAUTOMATOR
  • XCTEST
  • XCTEST_UI
§
webUrl?: string | null
[src]

The Device Farm console URL for the recording of the run.