effect-playwright
    Preparing search index...

    Interface Tracing

    0.5.0

    interface Tracing {
        start: (
            options?: {
                live?: boolean;
                name?: string;
                screenshots?: boolean;
                snapshots?: boolean;
                sources?: boolean;
                title?: string;
            },
        ) => Effect<void, PlaywrightError>;
        startChunk: (
            options?: { name?: string; title?: string },
        ) => Effect<void, PlaywrightError>;
        startHar: (options: string) => Effect<void, PlaywrightError>;
        stop: (options?: { path?: string }) => Effect<void, PlaywrightError>;
        stopChunk: (options?: { path?: string }) => Effect<void, PlaywrightError>;
        stopHar: Effect<void, PlaywrightError>;
    }
    Index
    start: (
        options?: {
            live?: boolean;
            name?: string;
            screenshots?: boolean;
            snapshots?: boolean;
            sources?: boolean;
            title?: string;
        },
    ) => Effect<void, PlaywrightError>

    Starts tracing.

    0.5.0

    startChunk: (
        options?: { name?: string; title?: string },
    ) => Effect<void, PlaywrightError>

    Starts a new tracing chunk.

    0.5.0

    startHar: (options: string) => Effect<void, PlaywrightError>

    Starts HAR recording.

    0.5.0

    stop: (options?: { path?: string }) => Effect<void, PlaywrightError>

    Stops tracing.

    0.5.0

    stopChunk: (options?: { path?: string }) => Effect<void, PlaywrightError>

    Stops a tracing chunk.

    0.5.0

    stopHar: Effect<void, PlaywrightError>

    Stops HAR recording.

    0.5.0