The Mouse (Coordinates) API category provides endpoints for controlling the mouse using precise screen coordinates. These endpoints enable click operations, dragging, scrolling, and other mouse actions at exact positions on the screen.
Use these endpoints when you need to interact with specific screen locations and have the exact X and Y coordinates. For more context-aware mouse control with AI assistance, see the Mouse (AI Vision) category.
Performs a left mouse button click at the specified coordinates.
View DetailsPerforms a double click at the specified coordinates.
View DetailsPerforms a right mouse button click at the specified coordinates.
View DetailsPerforms a drag operation from one set of coordinates to another.
View DetailsPerforms a scroll operation at the specified coordinates with the given number of clicks.
View DetailsWhen using these endpoints, keep in mind that screen coordinates are measured in pixels from the top-left corner of the screen (0,0). The exact screen resolution will depend on the system's display settings.
For most reliable results, make sure the target window is in the foreground before performing mouse
operations. You can use the bring-to-front
endpoint from the
Windows Automation category for this purpose.
If you don't know the exact coordinates of an element you want to interact with, consider using the Mouse (AI Vision) category which allows you to describe UI elements instead of providing exact coordinates.