Simulate a single tap on the cloud phone screen at the specified coordinates. The coordinate system uses the top-left corner of the screen as the origin (0, 0), with the X-axis extending to the right and the Y-axis extending downward.
Tap coordinates [x, y]. The coordinate system uses the top-left corner as origin (0, 0).
Example:
[ 540, 960 ]
POST
curl -i -X POST \
http://127.0.0.1:40000/api/cloudphone/touch/click \
-H 'Content-Type: application/json' \
-d '{
"id": 1558968155668507,
"pos": [
540,
960
]
}'Response
{ "code": 0, "msg": "success", "data": { "status": "finish" } }