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

    Interface AgentPlanScenario

    A test scenario within an agent plan, containing ordered steps and assertions.

    Group related test steps into a cohesive scenario for code generation.

    const scenario: AgentPlanScenario = {
    name: 'Create BOM with Material and Plant',
    steps: [step1, step2, step3],
    assertions: ['Success message displayed', 'Record visible in table'],
    controlsUsed: [createBtnRef, materialFieldRef],
    };
    interface AgentPlanScenario {
        assertions: string[];
        controlsUsed: AgentPlanControlRef[];
        name: string;
        steps: AgentPlanStep[];
    }
    Index

    Properties

    assertions: string[]

    Expected outcomes to verify after all steps complete.

    controlsUsed: AgentPlanControlRef[]

    Controls referenced by steps in this scenario.

    name: string

    Human-readable scenario name (used as test.step() label).

    steps: AgentPlanStep[]

    Ordered list of steps in this scenario.