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

    Variable screencastTestConst

    screencastTest: TestType<
        PlaywrightTestArgs & PlaywrightTestOptions & ScreencastFixtures,
        PlaywrightWorkerArgs & PlaywrightWorkerOptions & ScreencastWorkerDeps,
    > = ...

    Playwright test object extended with the screencast fixture.

    Extends the base Playwright test with a screencast test-scoped fixture wrapping the Playwright 1.59 page.screencast API.

    Compose with coreTest via mergeTests() to inject rootLogger:

    const test = mergeTests(coreTest, screencastTest);
    

    Provide structured video recording with real-time AI frame streaming

    ui5.inspect

    import { screencastTest } from 'playwright-praman';

    screencastTest('UI5 form workflow', async ({ screencast }) => {
    await screencast.showChapter('Open form');
    await screencast.showActions({ position: 'bottom' });
    });