Enumerations
Defines supported mouse buttons. Can be combined with OR. (e.g. to click with both left and right mouse buttons at the same time
Mouse.Click(
point, MouseButton.Left | MouseButton.Right)
).Namespace: Progile.ATE.TestFramework
Syntax:
[FlagsAttribute]
public enum MouseButton
Member Name | Description |
None | Only a move should take place
|
Left
| Left mouse button |
Middle | Middle mouse button |
Right | Right mouse button |
Defines possible directions for the scroll wheel. Note that not all connection types (e.g. VNC servers) will support scrolling left and right.
Namespace: Progile.ATE.TestFramework
Syntax:
[FlagsAttribute]
public enum MouseButton
Member Name | Description |
Down | Downwards scroll, content moves upwards |
Up | Upwards scroll, content moves downwards |
Left | Scroll to the left, content moves right
|
Right | Scroll to the right, content moves left |
Last modified 3yr ago