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

    Interface PropertyMatcher

    A property matcher with an explicit comparison operator.

    When a selector property value is a PropertyMatcher object instead of a plain primitive, the operator field controls how the comparison is made.

    const selector: UI5Selector = {
    controlType: 'sap.m.Input',
    properties: {
    value: { value: 'partial', operator: 'contains' },
    },
    };
    interface PropertyMatcher {
        operator?: "endsWith" | "startsWith" | "equals" | "contains" | "regex";
        value: string | number | boolean;
    }
    Index

    Properties

    Properties

    operator?: "endsWith" | "startsWith" | "equals" | "contains" | "regex"

    Comparison operator. Defaults to 'equals' when omitted.

    value: string | number | boolean

    The value to compare against.