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

    Interface VocabLookup

    Minimal vocabulary lookup interface required by core-wrappers.

    Compatible with the full VocabularyService from the vocabulary module. Declared inline to avoid a hard dependency on the (potentially unimplemented) vocabulary barrel.

    const vocab: VocabLookup = {
    getFieldSelector: vi.fn().mockResolvedValue({ id: 'vendorInput' }),
    };
    interface VocabLookup {
        getFieldSelector(
            term: string,
            domain?: string,
        ): Promise<UI5Selector | undefined>;
    }
    Index

    Methods

    • Resolves a human-readable business term to a UI5 selector.

      Parameters

      • term: string

        Business field name (e.g. 'Vendor', 'Material').

      • Optionaldomain: string

        Optional SAP domain scope (e.g. 'procurement').

      Returns Promise<UI5Selector | undefined>

      The matching UI5Selector, or undefined when the term is unknown.