cURL
curl --request POST \ --url https://api.example.com/v1/browsers/{id}/node-click/ \ --header 'Content-Type: application/json' \ --data ' { "node": "<string>" } '
{ "success": true }
Click an element by node reference
Authorization: Bearer YOUR_API_KEY
curl -X POST https://api.rustybrowser.com/v1/browsers/550e8400-e29b-41d4-a716-446655440000/node-click/ \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "node": "node-ref-here" }'