Praman — Agent-First SAP UI5 Test Automation Plugin - v1.2.0
    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: "error" | "success";
    }
    Index

    Properties

    Properties

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