Python
import os from skylight_sdk import Skylight with Skylight( apikey=os.getenv("SKYLIGHT_APIKEY", ""), ) as skylight: res = skylight.interact.click(instance_id="<id>", x=100, y=200) # Handle response print(res)
{ "message": "<string>", "status": "<string>" }
Perform a click operation at the specified coordinates or current position
Requires API key authentication.
API key authentication
left
right
middle
1 <= x <= 10
Successfully performed click operation
Status of the operation
"success"
Human-readable status message