browser-scrape
Original:🇺🇸 English
Translated
Extract structured data from web pages using browser automation and DOM queries
4installs
Sourceruvnet/ruflo
Added on
NPX Install
npx skill4agent add ruvnet/ruflo browser-scrapeTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Browser Scraping
Extract structured data from web pages using browser automation.
When to use
When you need to gather information from web pages that require JavaScript rendering, authentication, or dynamic content loading.
Steps
- Open page — call with the target URL
mcp__claude-flow__browser_open - Wait for content — call for dynamic content to load
mcp__claude-flow__browser_wait - Get accessibility tree — call for structured page content
mcp__claude-flow__browser_snapshot - Extract text — call with CSS selectors
mcp__claude-flow__browser_get-text - Run queries — call with JavaScript to extract structured data
mcp__claude-flow__browser_eval - Paginate — use on next/load-more buttons, then repeat extraction
browser_click - Close — call when done
mcp__claude-flow__browser_close
Best practices
- Prefer (accessibility tree) over raw HTML for structured extraction
browser_snapshot - Use with
browser_evalfor bulk extractiondocument.querySelectorAll - Add between page loads to avoid timing issues
browser_wait - Respect robots.txt and rate limits