Clicks on the specified coordinates, or an icon, or text. If text is specified, OCR will be run on the screenshot to find the text coordinates and click on it.
Copy
Ask AI
# Click on coordinatesinterpreter.computer.mouse.click(x=100, y=100)# Click on text on the screeninterpreter.computer.mouse.click("Onscreen Text")# Click on a gear iconinterpreter.computer.mouse.click(icon="gear icon")
Moves to the specified coordinates, or an icon, or text. If text is specified, OCR will be run on the screenshot to find the text coordinates and move to it.
Copy
Ask AI
# Click on coordinatesinterpreter.computer.mouse.move(x=100, y=100)# Click on text on the screeninterpreter.computer.mouse.move("Onscreen Text")# Click on a gear iconinterpreter.computer.mouse.move(icon="gear icon")