Install
openclaw skills install web-scrapingExtract structured information from websites using web_fetch for simple pages and browser automation for dynamic sites, login-gated flows, pagination, infinite scroll, or pages that require clicking/searching/filtering. Use when the user asks to scrape a site, collect listings, gather fields from many pages, monitor website changes, or turn webpage content into structured summaries/JSON/CSV.
openclaw skills install web-scrapingExtract data with the lightest reliable method first.
web_fetch for simple public pages when the needed content is already in HTML.browser when the site is dynamic, needs clicking, infinite scroll, filters, tabs, or login/session state.web_search only to discover candidate pages when the target URL is unknown.web_fetch for readable article/listing textbrowser snapshot for dynamic DOM inspectionPrefer one of these formats:
Use explicit keys, for example:
[
{
"title": "...",
"url": "...",
"source": "...",
"date": "...",
"summary": "..."
}
]