testObject.WaitForPropertyNotEquals(propertyName, propertyValue, [timeout])
testObject.WaitForPropertyNotEquals(propertyName, propertyValue, [timeout])
Variable | Description |
---|---|
propertyName | The name of the property. String. |
propertyValue | The value of the property to check against. Object. |
timeout | Optional: The maximum wait time in milliseconds. Integer. |
C#
control.WaitForPropertyNotEquals("Text", "Processing payment...", 10000);
Note: To get the entire list of the available properties for a control, use the GetPropertyList method.
VB
control.WaitForPropertyNotEquals("Text", "Processing payment...", 10000)
Note: To get the entire list of the available properties for a control, use the GetPropertyList method.