gbox-sdk
    Preparing search index...

    Interface ActionDragAdvanced

    interface ActionDragAdvanced {
        duration?: string;
        options?: ActionCommonOptions & Omit<
            GboxClient.V1.Boxes.ActionCommonOptions,
            "screenshot",
        >;
        path: Path[];
        screenshotDelay?: | `${number}h`
        | `${number}m`
        | `${number}s`
        | `${number}ms`;
    }

    Hierarchy

    Index

    Properties

    duration?: string

    Time interval between points (e.g. "50ms")

    Supported time units: ms (milliseconds), s (seconds), m (minutes), h (hours) Example formats: "500ms", "30s", "5m", "1h" Default: 50ms

    options?: ActionCommonOptions & Omit<
        GboxClient.V1.Boxes.ActionCommonOptions,
        "screenshot",
    >
    path: Path[]

    Path of the drag action as a series of coordinates

    screenshotDelay?: `${number}h` | `${number}m` | `${number}s` | `${number}ms`