Page
If you selected api driver
Authorizations
Path parameters
modestringRequired
Body
sessionUUIDstringRequired
urlstringRequired
Responses
200
Successful response
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
404
Not Found
application/json
500
Internal Server Error
application/json
post
POST /{mode}/v1/page/goToPage HTTP/1.1
Host: api.tasknet.co
X-Api-Key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 35
{
"sessionUUID": "text",
"url": "text"
}
No content
Executes a sequence of browser automation commands within an active session. Supports various actions like clicking, typing, hovering, and more.
Authorizations
Path parameters
modestringRequired
Body
sessionUUIDstring · uuidRequiredExample:
576626a7-2953-4790-8bc5-28a2e247ac03
Responses
200
Commands executed successfully
application/json
Responseobject
400
Bad Request
application/json
401
Unauthorized
application/json
404
Not Found
application/json
500
Internal Server Error
application/json
post
POST /{mode}/v1/page/executeCommands HTTP/1.1
Host: api.tasknet.co
X-Api-Key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 129
{
"sessionUUID": "576626a7-2953-4790-8bc5-28a2e247ac03",
"commands": [
{
"action": "Click",
"x": 1,
"y": 1,
"clickCount": 1,
"button": "left"
}
]
}
{}
Last updated