Skip to main content

clicknium.mouse.move

def move(
self,
x: int,
y: int
) -> None

Move the mouse cursor to the X and Y integer coordinates.

Parameters:
x[Required]: int
defines the X integer coordinate.
y[Required]: int
defines the Y integer coordinate.

Returns:
None

Example:


from clicknium import clicknium as cc

# Move the mouse to position (100,100)
cc.mouse.move(100,100)