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

TestGridSession

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

A "TestGridSession" is a single instance of a browser launched from the URL provided by a call to "CreateTestGridUrl".

interface TestGridSession {
arn?: string | null;
billingMinutes?: number | null;
created?: Date | number | null;
ended?: Date | number | null;
seleniumProperties?: string | null;
status?: TestGridSessionStatus | null;
}

§Properties

§
arn?: string | null
[src]

The ARN of the session.

§
billingMinutes?: number | null
[src]

The number of billed minutes that were used for this session.

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

The time that the session was started.

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

The time the session ended.

§
seleniumProperties?: string | null
[src]

A JSON object of options and parameters passed to the Selenium WebDriver.

§

The state of the session.