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

    Interface WaitForODataLoadOptions

    Options for waiting on OData data load completion.

    const opts: WaitForODataLoadOptions = {
    timeout: 15_000,
    bindingPath: '/Products',
    polling: 200,
    };
    interface WaitForODataLoadOptions {
        bindingPath?: `/${string}`;
        modelName?: string;
        polling?: number;
        timeout?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    bindingPath?: `/${string}`

    Binding path to check for loaded data (must start with /).

    modelName?: string

    Named OData model. Omit or pass undefined for the default (unnamed) model.

    polling?: number

    Polling interval in ms. Defaults to DEFAULT_TIMEOUTS.POLLING_INTERVAL.

    timeout?: number

    Timeout in ms for the operation. Defaults to DEFAULT_TIMEOUTS.UI5_WAIT.