UiObjectBaseDescription Class
Common description properties for all test objects in a mobile application (except for IApplication and IDevice).

C# Syntax

public abstract class UiObjectBaseDescription : HP.LFT.SDK.PropertiesDescription, HP.LFT.SDK.IDescription  
Inheritance Hierarchy
Public Properties
 NameDescription
Public PropertyAccessibilityIdThe accessibility ID of the mobile object.  
Public PropertyClassNameThe test object class name used by Digital Lab (UFT Mobile).  
Public PropertyContainerContainer information if the object is in a table. (iOS Only)  
Public PropertyIsCheckable

Indicates whether the mobile object can be checked.

C# Syntax

 Nullable<bool> IsCheckable {get; set;}
Public PropertyIsChecked

Indicates whether the mobile object is checked. (Relevant for objects that can have a check mark.)

C# Syntax

 Nullable<bool> IsChecked {get; set;}
Public PropertyIsClickable

Indicates whether the mobile object can be tapped.  

C# Syntax

Nullable<bool> IsClickable {get; set;}
Public PropertyIsEnabled

Indicates whether the mobile object is enabled.  

C# Syntax

Nullable<bool> IsEnabled {get; set;}
Public PropertyIsFocusable

Indicates whether the object can receive focus.  

C# Syntax

Nullable<bool> IsFocusable {get; set;}
Public PropertyIsFocused

Indicates whether the mobile object is in focus.  

C# Syntax

Nullable<bool> IsFocused {get; set;}
Public PropertyMobileCenterIndexAn ordinal number assigned to the object to indicate the order in which the object appears on the device relative to other objects with an otherwise identical description.  
Public PropertyNativeClass

The native class of the mobile object.

C# Syntax

public StringProperty NativeClass {get; set;}
Public PropertyResourceIdThe resource ID of the object. (Android only)  
Public PropertyText

The text of the mobile object.

C# Syntax

public StringProperty Text {get; set;}
Public PropertyVriDistinguishes this object from other objects with otherwise identical descriptions, based on this object's visual relationship to another object in the application.  
Top
Public Methods
 NameDescription
Public MethodCloneCreates an exact copy of the test object. (Inherited from HP.LFT.SDK.PropertiesDescription )
Top