List interactive page elements
list_elementsFetch a page through the ScrapeUnblocker API (https://developers.scrapeunblocker.com) and return its interactive elements (buttons, inputs, selects, links, forms), each with a ready-to-use selector, as JSON {url, count, elements:[...]} instead of raw HTML. Use it to discover what to target, then drive the page with the steps param of fetch_html.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The absolute URL to load and inspect (http/https). | |
| wait_value | No | The selector/expression paired with wait_method. | |
| wait_method | No | Optional render-wait: 'css' selector or 'js' expression. | |
| proxy_country | No | Optional ISO country code to route through, e.g. 'US'. | |
| sleep_seconds | No | Extra seconds to wait after load before inspecting. |