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

    Variable testConst

    test: MergedTestType<
        [
            TestType<
                PlaywrightTestArgs & PlaywrightTestOptions & TestFixtures & ModuleFixtures,
                PlaywrightWorkerArgs & PlaywrightWorkerOptions & WorkerFixtures,
            >,
            TestType<
                PlaywrightTestArgs & PlaywrightTestOptions & AuthFixtures & AuthFixtureOptions,
                PlaywrightWorkerArgs & PlaywrightWorkerOptions & AuthDeps,
            >,
            TestType<
                PlaywrightTestArgs & PlaywrightTestOptions & NavFixtures,
                PlaywrightWorkerArgs & PlaywrightWorkerOptions & NavWorkerDeps,
            >,
        ],
    > = ...

    Unified Playwright test object with all Praman fixtures.

    Combines moduleTest (config, logger, ui5 + table/dialog/date/odata), authTest (sapAuth), navTest (ui5Navigation, btpWorkZone), stabilityTest (auto-wait, request interception), and feTest (fe).

    import { test } from 'playwright-praman';

    test('table and FE ops', async ({ ui5, ui5Navigation, fe }) => {
    await ui5Navigation.navigateToApp('PurchaseOrder-manage');
    await ui5.table.getRows('myTable');
    await fe.listReport.search();
    });