ATGTestInput.Input.MoveTo C# (CSharp) Method

MoveTo() public static method

Move the mouse to an element.
If there is not clickable point for the element
public static MoveTo ( AutomationElement el ) : void
el System.Windows.Automation.AutomationElement The element that the mouse will move to
return void
        public static void MoveTo( AutomationElement el )
        {
            if (el == null)
            {
                throw new ArgumentNullException("el");
            }
            MoveTo( el.GetClickablePoint() );
        }

Same methods

Input::MoveTo ( Point pt ) : void