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

    Interface TestLibraryConfig

    Configuration for SAP Fiori Elements OPA5 page objects.

    Maps logical page names (e.g., onTheMainPage, onTheDetailPage) to their FE test library class configuration. Each page can configure one or more FE class types (ListReport, ObjectPage, Shell).

    const config: TestLibraryConfig = {
    onTheMainPage: {
    ListReport: {
    appId: 'my.app',
    componentId: 'myComponent',
    entitySet: 'Products',
    },
    },
    onTheDetailPage: {
    ObjectPage: {
    appId: 'my.app',
    componentId: 'myDetail',
    entitySet: 'Products',
    },
    },
    };
    interface TestLibraryConfig {
        onTheDetailPage?: {
            ObjectPage?: { appId: string; componentId: string; entitySet: string };
        };
        onTheMainPage?: {
            ListReport?: { appId: string; componentId: string; entitySet: string };
        };
        onTheShell?: { Shell?: Readonly<Record<string, never>> };
    }
    Index

    Properties

    onTheDetailPage?: {
        ObjectPage?: { appId: string; componentId: string; entitySet: string };
    }
    onTheMainPage?: {
        ListReport?: { appId: string; componentId: string; entitySet: string };
    }
    onTheShell?: { Shell?: Readonly<Record<string, never>> }