Example #1
0
        public static void Click(AutomationElement target, MouseButton mouseButton = MouseButton.Left,
                                 GetLocationMode getLocationMode = GetLocationMode.ByClickablePoint)
        {
            if (target == null)
            {
                throw new ArgumentNullException("target");
            }

            Point location;

            switch (getLocationMode)
            {
            case GetLocationMode.ByClickablePoint:
                var point = target.GetClickablePoint();
                location = new Point((int)point.X, (int)point.Y);
                break;

            case GetLocationMode.ByBoundingRectangle:
                var rect = target.Current.BoundingRectangle;
                location = new Point((int)(rect.X + rect.Width / 2), (int)(rect.Y + rect.Height / 2));
                break;

            default:
                throw new NotSupportedException(getLocationMode.ToString());
            }

            Mouse.MoveTo(location);

            Mouse.Click(mouseButton);
        }
Example #2
0
 public static void DoubleClick(AutomationElement target, MouseButton mouseButton = MouseButton.Left,
                                GetLocationMode getLocationMode = GetLocationMode.ByClickablePoint)
 {
     Click(target, mouseButton, getLocationMode);
     Mouse.Click(mouseButton);
 }