# RPA Examples
1. Open calculator: curl -X POST http://localhost:9100/natural/execute -H "Content-Type: text/plain" -d "Open calculator"
2. Open firefox: curl -X POST http://localhost:9100/natural/execute -H "Content-Type: text/plain" -d "Open firefox and wait 3 seconds"
3. Type text: curl -X POST http://localhost:9100/natural/execute -H "Content-Type: text/plain" -d "Type hello world and press enter"
4. Mouse drag: curl -X POST http://localhost:9100/workflow/execute -H "Content-Type: application/json" -d "[{\"action\":\"drag\",\"x1\":100,\"y1\":100,\"x2\":500,\"y2\":500}]"
5. Scroll: curl -X POST http://localhost:9100/workflow/execute -H "Content-Type: application/json" -d "[{\"action\":\"scroll\",\"direction\":\"down\"}]"