Interface IUiObjectBase
Base interface for all UiObjects in all technologies.
public interface IUiObjectBase : IClickable, IDoubleClickable, ILocationInfoProvider, ISupportSendKeys, ISupportDragAndDrop, IEnabledProvider, IVisibleProvider
- Inherited Members
- Extension Methods
Remarks
The UiObjects are the test objects used to identify objects in a technology that do not have a more specific relevant type.
Properties
Handle
The hWnd of this object's window.
IntPtr Handle { get; }
Property Value
IsFocused
Indicates whether this object is currently in focus.
bool IsFocused { get; }
Property Value
NativeClass
This object's window class name.
string NativeClass { get; }
Property Value
WindowTitleRegExp
The constant part of this window title.
string WindowTitleRegExp { get; }
Property Value
Methods
MouseMove(Location)
Moves the mouse pointer to the specified position inside this object.
void MouseMove(Location moveTo)