TheDocumentation Index
Fetch the complete documentation index at: https://docs.narada.ai/llms.txt
Use this file to discover all available pages before exploring further.
agentic_matching_selectors_finder method uses a narrow Operator agent to identify every visible element that matches a prompt, then returns AgenticSelectors objects you can pass directly to agentic_selector.
Use it when a workflow needs to loop over repeated controls, cards, rows, links, or accordion buttons and perform the same deterministic action on each match.
This method finds matching targets only. To click, fill, read, or hover over the returned elements, iterate through the selector objects and call
agentic_selector().Method Signature
Parameters
Natural-language description of the visible elements to find. Include the page section or container when possible so the finder returns the intended repeated targets.
Maximum time in seconds to wait. The default is 300 seconds because this method may run an Operator agent.
Return Value
Returns a list ofAgenticSelectors dictionaries. If no elements match, the method returns an empty list.
Each returned selector object may include one or more selector fields:
Example
When to Use This vs agentic_selector
agentic_matching_selectors_finder | agentic_selector | |
|---|---|---|
| Purpose | Find many matching targets | Act on one target |
| Returns | list[AgenticSelectors] | AgenticSelectorResponse |
| Best for | Repeated controls or rows | Clicking, filling, reading, or hovering |
| Typical use | Collect once, then loop | Execute each deterministic action |