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

TestGridSessionAction

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

An action taken by a "TestGridSession" browser instance.

interface TestGridSessionAction {
action?: string | null;
duration?: number | null;
requestMethod?: string | null;
started?: Date | number | null;
statusCode?: string | null;
}

§Properties

§
action?: string | null
[src]

The action taken by the session.

§
duration?: number | null
[src]

The time, in milliseconds, that the action took to complete in the browser.

§
requestMethod?: string | null
[src]

HTTP method that the browser used to make the request.

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

The time that the session invoked the action.

§
statusCode?: string | null
[src]

HTTP status code returned to the browser when the action was taken.