Intelligent browser automation that adapts to page changes
AI Mode switches Spidra from selector-based scraping to intelligent browser automation. Instead of relying on CSS selectors that break when websites update their layouts, AI Mode understands page structure and adapts on the fly.
If the website changes that button’s ID or class name, your scrape fails.AI Mode understands intent. You can still use selectors, but it also accepts natural language descriptions:
Copy
{ "urls": [{ "url": "https://example.com/products", "actions": [ {"type": "click", "selector": "Accept cookies button"}, {"type": "click", "selector": "Load more button"}, {"type": "type", "selector": "Search input field", "value": "laptop"} ] }], "prompt": "Extract all product names and prices", "output": "json", "aiMode": true}
The AI finds the right elements regardless of their ID, class name, or position on the page.