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

    Type Alias UI5MatcherFn

    UI5MatcherFn: (
        page: MatcherPage,
        controlId: string,
        ...args: readonly unknown[],
    ) => Promise<MatcherResult>

    A matcher function suitable for expect.extend() registration.

    Type Declaration

    This is the output of createUI5Matcher — it wraps the raw check function with pollUntilPass auto-retry and accepts an optional trailing MatcherOptions parameter.

    const matcher: UI5MatcherFn = async (page, controlId, expected, options?) => {
    // auto-retry logic built-in
    };