Simulate a mouse move, this is good way to test hover functionality.
Namespace:
QAliber.Engine.Controls
Assembly:
QAliber.Engine (in QAliber.Engine.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public virtual void MoveMouseTo(
Point to
) |
| Visual Basic (Declaration) |
|---|
Public Overridable Sub MoveMouseTo ( _
to As Point _
) |
| Visual C++ |
|---|
public:
virtual void MoveMouseTo(
Point to
) |
Parameters
- to
- Type: System.Windows..::.Point
The point in pixels relative to the top left corner of the control, to move the mouse to
Examples
CopyC#
Desktop.UIA.MoveMouseTo(new Point(300,300));
See Also