Praman — AI-First SAP UI5 Test Automation Platform - v1.0.1
    Preparing search index...

    Interface FETestLibraryResponse

    Response envelope from browser-side FE script execution.

    Returned by FE_EMPTY_QUEUE_SCRIPT after OPA5 queue execution. Contains success/error status, optional assertion logs, and a message.

    const response: FETestLibraryResponse = {
    type: 'success',
    feLogs: ['Filter applied: Status = Open'],
    message: 'Queue executed successfully',
    };
    interface FETestLibraryResponse {
        feLogs?: readonly string[];
        message?: string;
        type: "success" | "error";
    }
    Index

    Properties

    Properties

    feLogs?: readonly string[]
    message?: string
    type: "success" | "error"