Skip to main content
The 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

str
required
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.
int | None
default:"300"
Maximum time in seconds to wait. The default is 300 seconds because this method may run an Operator agent.

Return Value

Returns a list of AgenticSelectors 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