Praman — Agent-First SAP UI5 Test Automation Plugin - v1.2.0
    Preparing search index...

    Interface AgentPlanControlRef

    Reference to a specific control used in a test plan step.

    Map discovered controls to their Praman API methods for code generation.

    const ref: AgentPlanControlRef = {
    controlId: 'createBtn',
    controlType: 'sap.m.Button',
    pramanMethod: "ui5.control({ controlType: 'sap.m.Button', properties: { text: 'Create' } }).press()",
    };
    interface AgentPlanControlRef {
        controlId: string;
        controlType: string;
        pramanMethod: string;
    }
    Index

    Properties

    controlId: string

    UI5 control ID discovered on the page.

    controlType: string

    Fully-qualified UI5 control type (e.g. sap.m.Button).

    pramanMethod: string

    Praman fixture method call to interact with this control.