What problem does it solve?
This Skill provides a reliable playbook for scraping IKEA category (PLP) pages and extracting product card data from server-rendered HTML while handling Cloudflare edge-cache quirks that can cause stale pagination results.
Core Features & Use Cases
- Bypass Cloudflare pagination cache by navigating paginated category pages with a real Chrome instance connected to the debug port and disabling cache.
- Fast SSR HTML parsing using cheerio-style DOM extraction to pull id, name, price, currency, url, image and badge flags from data attributes on product cards.
- Robust pagination and dedupe: compute total pages from the "Showing X of N results" text, navigate ?page=N in Chrome, collect page content, parse cards, and deduplicate by data-ref-id.
- Use Case: reliably build a complete, deduplicated product catalog or price monitor from ikea.com category URLs for analytics or inventory tooling.
Quick Start
Use the ikea skill to scrape all products from an ikea.com category URL and return deduplicated product records with id, name, price, currency, url, and image.