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

    Type Alias TableInfo

    Discriminated union for table detection results.

    Use the kind discriminant to narrow between standard and SmartTable wrappers.

    const info: TableInfo = await detectTableType(page, 'myTable');
    if (info.kind === 'smart') {
    logger.info(info.smartTableId);
    }