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

    Interface AgentPlanStep

    A single step in an agent test plan scenario.

    Describe one atomic user action for test generation.

    const step: AgentPlanStep = {
    index: 1,
    description: 'Click the Create BOM button in the toolbar',
    action: 'press',
    controlId: 'createBtn',
    controlType: 'sap.m.Button',
    pramanMethod: "ui5.control({ controlType: 'sap.m.Button', properties: { text: 'Create BOM' } }).press()",
    };
    interface AgentPlanStep {
        action: string;
        controlId?: string;
        controlType?: string;
        description: string;
        index: number;
        pramanMethod?: string;
    }
    Index

    Properties

    action: string

    Action verb (e.g. 'press', 'setValue', 'navigate').

    controlId?: string

    UI5 control ID targeted by this step, if applicable.

    controlType?: string

    Fully-qualified UI5 control type, if applicable.

    description: string

    Human-readable description of this step.

    index: number

    1-based step index within the scenario.

    pramanMethod?: string

    Praman fixture method call for this step, if applicable.