@elysiumoss/ui-capture - v0.3.0
    Preparing search index...

    Interface PlannedStep

    interface PlannedStep {
        plan: StepPlan;
        settleMs: number;
        optional: boolean;
        kind:
            | "fill"
            | "waitFor"
            | "wait"
            | "click"
            | "select"
            | "press"
            | "request"
            | "reload";
        target: string;
        label: string;
    }
    Index
    plan: StepPlan
    settleMs: number

    Pause after the step succeeds.

    optional: boolean

    Log and continue instead of failing the state.

    kind:
        | "fill"
        | "waitFor"
        | "wait"
        | "click"
        | "select"
        | "press"
        | "request"
        | "reload"

    Step kind, carried into StateCaptureError.

    target: string

    The selector, key, path or duration the step acts on.

    label: string

    click "#spawn" — used verbatim in logs and failure messages.