Simulate a mouse click action on the browser instance
POST
/browsers/{id}/computer/click_mouseAuthorization
bearerAuth AuthorizationBearer <token>
In: header
Path Parameters
id*string
Browser session ID
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response
Mouse action performed
no response body.
curl -X POST "https://example.com/browsers/string/computer/click_mouse" \ -H "Content-Type: application/json" \ -d '{ "x": 0, "y": 0 }'Empty
{ "code": "string", "message": "string", "details": [ { "code": "string", "message": "string" } ], "inner_error": { "code": "string", "message": "string" }}{ "code": "string", "message": "string", "details": [ { "code": "string", "message": "string" } ], "inner_error": { "code": "string", "message": "string" }}{ "code": "string", "message": "string", "details": [ { "code": "string", "message": "string" } ], "inner_error": { "code": "string", "message": "string" }}postMake an HTTP request through the browser's network stack
Sends an HTTP request through Chrome's HTTP request stack, inheriting the browser's TLS fingerprint, cookies, proxy configuration, and headers. Returns a structured JSON response with status, headers, body, and timing.
postMove the mouse cursor to the specified coordinates on the browser instance
Next Page