Discover and plan executable actions on any web page
observe()
await cuehand.observe("find the search bar at the top")
{ "description": "Search models textbox", "method": "fill", "arguments": [ "" ], "selector": "xpath=/html[1]/body[1]/header[1]/nav[1]/div[2]/div[1]/form[1]/div[1]/input[1]" }
act()
const [action] = await cuehand.observe( "click the search bar at the top" ); if (action) { await cuehand.act(action); };
Was this page helpful?