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

    Interface IntentOptions

    Options controlling intent execution behaviour.

    All fields are optional. When omitted, the intent function uses built-in defaults.

    import type { IntentOptions } from '#intents/types.js';

    const opts: IntentOptions = { skipNavigation: true, timeout: 60_000 };
    interface IntentOptions {
        skipNavigation?: boolean;
        timeout?: number;
        validateViaOData?: boolean;
    }
    Index

    Properties

    skipNavigation?: boolean

    When true, skip FLP navigation and assume the correct app is already open.

    timeout?: number

    Override the default interaction timeout (ms).

    validateViaOData?: boolean

    When true, validate the operation result via an OData GET after save.