Member Junction
    Preparing search index...

    An individual output item emitted by a test driver during execution. The engine persists each item as a TestRunOutput entity record. Supports any media type — images, video, audio, text, JSON, HTML, etc.

    interface TestRunOutputItem {
        description?: string;
        durationSeconds?: number;
        fileSizeBytes?: number;
        height?: number;
        inlineData?: string;
        metadata?: Record<string, unknown>;
        mimeType?: string;
        name?: string;
        outputTypeName: string;
        sequence: number;
        stepNumber?: number;
        width?: number;
    }
    Index

    Properties

    description?: string

    Additional context about this output

    durationSeconds?: number

    Duration in seconds for audio or video outputs

    fileSizeBytes?: number

    Size of the output data in bytes

    height?: number

    Height in pixels for image or video outputs

    inlineData?: string

    Base64-encoded binary data (images, audio, video) or text content (logs, JSON, HTML)

    metadata?: Record<string, unknown>

    Additional metadata as JSON (e.g., URL at time of capture, tool calls, error info)

    mimeType?: string

    MIME type of the output data (e.g., "image/png", "text/plain", "video/mp4")

    name?: string

    Human-readable label (e.g., "Step 3 Screenshot")

    outputTypeName: string

    Name matching TestRunOutputType.Name (e.g., "Screenshot", "Log", "Video")

    sequence: number

    Chronological ordering for storyboarding outputs across steps

    stepNumber?: number

    Which step produced this output (for step-based tests like Computer Use)

    width?: number

    Width in pixels for image or video outputs