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

    Interface ControlTreeTestEntry

    A single failed test entry with its captured control tree snapshot.

    const entry: ControlTreeTestEntry = {
    testTitle: 'should create purchase order',
    testFile: 'tests/po-create.spec.ts',
    snapshot: { ... },
    };
    interface ControlTreeTestEntry {
        snapshot: ControlTreeSnapshot;
        testFile: string;
        testTitle: string;
    }
    Index

    Properties

    snapshot: ControlTreeSnapshot

    The captured control tree snapshot.

    testFile: string

    File path of the test.

    testTitle: string

    Title of the failed test.