Class AIObjectDescription
The description of a AiObject test object.
public class AIObjectDescription : PropertiesDescription, IDescription, ICloneable
- Inheritance
-
AIObjectDescription
- Implements
- Inherited Members
Constructors
AIObjectDescription()
Constructs a new AiObjectDescription.
public AIObjectDescription()
AIObjectDescription(string)
Constructs a new AiObjectDescription.
public AIObjectDescription(string aiClass)
Parameters
AIObjectDescription(string, TextWithMatchOptions)
Constructs a new AiObjectDescription.
public AIObjectDescription(string aiClass, TextWithMatchOptions textWithMatchOptions)
Parameters
aiClassstringThe AI Class type of the AI object (you can use the AITypes helper class).
textWithMatchOptionsTextWithMatchOptionsThe text and match method used to identify the AI Object.
AIObjectDescription(string, RegExpProperty)
Constructs a new AiObjectDescription.
public AIObjectDescription(string aiClass, RegExpProperty regExp)
Parameters
aiClassstringThe AI Class type of the AI object (you can use the AITypes helper class).
regExpRegExpPropertyThe RegExpProperty to use to identify the AI object.
AIObjectDescription(string, string)
Constructs a new AiObjectDescription.
public AIObjectDescription(string aiClass, string text)
Parameters
aiClassstringThe AI Class type of the AI object (you can use the AITypes helper class).
textstringThe text to use to identify the AI object.
Properties
AIClass
The AI Class type of the AI object.
public string AIClass { get; set; }
Property Value
Dictionary
For internal use only.
public IDictionary<string, object> Dictionary { get; }
Property Value
Locator
The locator to use to uniquely identify the object.
public ILocator Locator { get; set; }
Property Value
RegExp
The regular expression used to identify the AI Object.
public RegExpProperty RegExp { get; set; }
Property Value
Text
The text used to identify the AI Object.
public StringProperty Text { get; set; }
Property Value
TextWithMatchOptions
The text and match method used to identify the AI Object.
public TextWithMatchOptions TextWithMatchOptions { get; set; }