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

    Interface ProxyMethodCall

    Captured method call from the Given/When/Then proxy chain.

    Each call records the OPA5 scope type, target page, and method chain. The accessor flag distinguishes property access from function calls.

    // When.onTheMainPage.onFilterBar().iChangeSearchField('x')
    const call: ProxyMethodCall = {
    type: 'When',
    target: 'onTheMainPage',
    methods: [
    { name: 'onFilterBar', accessor: false },
    { name: 'iChangeSearchField', args: ['x'], accessor: false },
    ],
    };
    interface ProxyMethodCall {
        methods: readonly {
            accessor?: boolean;
            args?: readonly unknown[];
            name: string;
        }[];
        target: string;
        type: "Given"
        | "When"
        | "Then";
    }
    Index

    Properties

    Properties

    methods: readonly {
        accessor?: boolean;
        args?: readonly unknown[];
        name: string;
    }[]
    target: string
    type: "Given" | "When" | "Then"