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

GetDevicePoolCompatibilityRequest

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

Represents a request to the get device pool compatibility operation.

interface GetDevicePoolCompatibilityRequest {
appArn?: string | null;
configuration?: ScheduleRunConfiguration | null;
devicePoolArn: string;
test?: ScheduleRunTest | null;
testType?: TestType | null;
}

§Properties

§
appArn?: string | null
[src]

The ARN of the app that is associated with the specified device pool.

§
configuration?: ScheduleRunConfiguration | null
[src]

An object that contains information about the settings for a run.

§
devicePoolArn: string
[src]

The device pool's ARN.

§
test?: ScheduleRunTest | null
[src]

Information about the uploaded test to be run against the device pool.

§
testType?: TestType | null
[src]

The test type for the specified device pool.

Allowed values include the following:

  • BUILTIN_FUZZ.
  • BUILTIN_EXPLORER. 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.