Member Junction
    Preparing search index...

    Definition of a single test variable. Stored in TestType.VariablesSchema.variables array.

    interface TestVariableDefinition {
        dataType: TestVariableDataType;
        defaultValue?: string | number | boolean | Date;
        description?: string;
        displayName: string;
        name: string;
        possibleValues?: TestVariablePossibleValue[];
        required: boolean;
        valueSource: TestVariableValueSource;
    }
    Index

    Properties

    Data type of the variable value

    defaultValue?: string | number | boolean | Date

    Default value (must match dataType)

    description?: string

    Description of what this variable controls

    displayName: string

    Human-readable display name

    name: string

    Unique name for the variable (e.g., "AIConfiguration", "Temperature")

    possibleValues?: TestVariablePossibleValue[]

    For static valueSource: list of valid values Each entry has a value and optional display label

    required: boolean

    Whether this variable must have a value to run the test

    How valid values are determined