diff --git a/src/TestStack.White/UIItems/IUIItem.cs b/src/TestStack.White/UIItems/IUIItem.cs index be1be5d1..713abd9d 100644 --- a/src/TestStack.White/UIItems/IUIItem.cs +++ b/src/TestStack.White/UIItems/IUIItem.cs @@ -190,6 +190,16 @@ public interface IUIItem : IActionListener, IEquatable /// void Click(); + /// + /// Performs mouse click at relative location 1,1 is bottom right + /// + void RelativeClick(float x, float y); + + /// + /// Performs mouse click at an absolute location from top left + /// + void AbsoluteClick(Point offset); + /// /// Performs mouse double click at the center of the UI Item /// diff --git a/src/TestStack.White/UIItems/UIItem.cs b/src/TestStack.White/UIItems/UIItem.cs index 180b15a9..fe838292 100644 --- a/src/TestStack.White/UIItems/UIItem.cs +++ b/src/TestStack.White/UIItems/UIItem.cs @@ -327,7 +327,30 @@ public virtual void Invoke() public virtual void Click() { actionListener.ActionPerforming(this); - PerformIfValid(PerformClick); + PerformIfValid(ClickCenter); + } + + private void ClickCenter() + { + PerformRelativeClick(0.5f, 0.5f); + } + + /// + /// Performs mouse click at relative location 1,1 is bottom right + /// + public virtual void RelativeClick(float x, float y) + { + actionListener.ActionPerforming(this); + PerformIfValid(() => PerformRelativeClick(x, y)); + } + + /// + /// Performs mouse click at an absolut location from top left + /// + public virtual void AbsoluteClick(Point offset) + { + actionListener.ActionPerforming(this); + PerformIfValid(() => PerformOffsetClick(offset)); } /// @@ -622,7 +645,18 @@ private void PerformIfValid(System.Action action) throw new AutomationException(string.Format("Cannot perform action on {0}, {1}", this, message), Debug.Details(AutomationElement)); } - private void PerformClick() + private void PerformRelativeClick(float width, float height) + { + if (!Enabled) Logger.WarnFormat("Clicked on disabled item: {0}", ToString()); + var bounds = Bounds; + if (bounds.IsEmpty) + { + throw new WhiteException(string.Format("Failed to click on {0}, bounds empty", ToString())); + } + mouse.Click(new Point(bounds.Left + (bounds.Width * width), bounds.Top + (bounds.Height * height)), actionListener); + } + + private void PerformOffsetClick(Point offset) { if (!Enabled) Logger.WarnFormat("Clicked on disabled item: {0}", ToString()); var bounds = Bounds; @@ -630,7 +664,7 @@ private void PerformClick() { throw new WhiteException(string.Format("Failed to click on {0}, bounds empty", ToString())); } - mouse.Click(bounds.Center(), actionListener); + mouse.Click(new Point(bounds.Left + offset.X, bounds.Top + offset.Y), actionListener); } #endregion