All skills
Skillintermediate

Cloudflare Browser Rendering Skill Reference

**Description**: Expert knowledge for Cloudflare Browser Rendering - control headless Chrome on Cloudflare's global network for browser automation, screenshots, PDFs, web scraping, testing, and content generation.

Claude Code Knowledge Pack7/10/2026

Overview

Cloudflare Browser Rendering Skill Reference

Description: Expert knowledge for Cloudflare Browser Rendering - control headless Chrome on Cloudflare's global network for browser automation, screenshots, PDFs, web scraping, testing, and content generation.

When to use: Any task involving Cloudflare Browser Rendering including: taking screenshots, generating PDFs, web scraping, browser automation, testing web applications, extracting structured data, capturing page metrics, or automating browser interactions.

Decision Tree

REST API vs Workers Bindings

Use REST API when:

  • One-off, stateless tasks (screenshot, PDF, content fetch)
  • No Workers infrastructure yet
  • Simple integrations from external services
  • Need quick prototyping without deployment

Use Workers Bindings when:

  • Complex browser automation workflows
  • Need session reuse for performance
  • Multiple page interactions per request
  • Custom scripting and logic required
  • Building production applications

Puppeteer vs Playwright

FeaturePuppeteerPlaywright
API StyleChrome DevTools ProtocolHigh-level abstractions
SelectorsCSS, XPathCSS, text, role, test-id
Best forAdvanced control, CDP accessQuick automation, testing
Learning curveSteeperGentler

Use Puppeteer: Need CDP protocol access, Chrome-specific features, migration from existing Puppeteer code Use Playwright: Modern selector APIs, cross-browser patterns, faster development

Tier Limits Summary

LimitFree TierPaid Tier
Daily browser time10 minutesUnlimited*
Concurrent sessions330
Requests per minute6180

*Subject to fair-use policy. See gotchas.md for details.

Reading Order

New to Browser Rendering:

  1. configuration.md - Setup and deployment
  2. patterns.md - Common use cases with examples
  3. api.md - API reference
  4. gotchas.md - Avoid common pitfalls

Specific task:

REST API users:

Workers users:

In This Reference

  • configuration.md - Setup, deployment, wrangler config, compatibility
  • api.md - REST API endpoints + Workers Bindings (Puppeteer/Playwright)
  • patterns.md - Common patterns, use cases, real examples
  • gotchas.md - Troubleshooting, best practices, tier limits, common errors

See Also