You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update screenshots.mdx
update that local dev is possible
* Update faq.mdx
add local dev limitations in FAQ
* Update faq.mdx
added new FAQ about users not having proper paid entitlement until they redeploy the worker
* Update src/content/docs/browser-rendering/faq.mdx
* Update faq.mdx
remove robots.txt language
---------
Co-authored-by: ToriLindsay <[email protected]>
Copy file name to clipboardExpand all lines: src/content/docs/browser-rendering/faq.mdx
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ To resolve: Pass your Browser binding into `puppeteer.launch`.
20
20
21
21
### Will Browser Rendering bypass Cloudflare's Bot Protection?
22
22
23
-
No, Browser Rendering requests are always identified as bots by Cloudflare and do not bypass Bot Protection. Additionally, Browser Rendering respects the robots.txt protocol, ensuring that any disallowed paths specified for user agents are not accessed during rendering.
23
+
No, Browser Rendering requests are always identified as bots by Cloudflare and do not bypass Bot Protection.
24
24
25
25
If you are attempting to scan your **own zone** and need Browser Rendering to access areas protected by Cloudflare’s Bot Protection, you can create a [WAF skip rule](/waf/custom-rules/skip/) to bypass the bot protection using a header or a custom user agent.
26
26
@@ -70,3 +70,15 @@ No. Browser Rendering requests originate from Cloudflares global network, but yo
70
70
This error indicates you have hit the daily browser-instance limit on the Workers Free plan. [Free-plan accounts are capped at free plan limit is 10 minutes of browser use a day](/browser-rendering/platform/limits/#workers-free) once you exceed those, further creation attempts return a 429 until the next UTC day.
71
71
72
72
To resolve:[Upgrade to a Workers Paid plan](/workers/platform/pricing/) - Paid accounts raise these limits to [10 concurrent browsers and 10 new instances per minute](/browser-rendering/platform/limits/#workers-paid).
73
+
74
+
### Does local development support all Browser Rendering features?
75
+
76
+
Not yet. Local development currently has the following limitations:
77
+
- Requests larger than 1 MB are not supported.
78
+
- Playwright is not supported in local development environments.
79
+
80
+
For full feature access, use `npx wrangler dev --remote`.
81
+
82
+
### I upgraded from the Workers Free plan, but I'm still hitting the 10-minute per day limit. What should I do?
83
+
84
+
If you recently upgraded to the Workers Paid plan to increase your Browser Rendering usage limits, but you're still encountering the 10-minute per day cap, try redeploying your Worker. This ensures your usage is correctly associated with your new plan.
Copy file name to clipboardExpand all lines: src/content/docs/browser-rendering/workers-bindings/screenshots.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -171,7 +171,7 @@ If the same `"url"` is requested again, it will use the cached version in KV ins
171
171
172
172
## 6. Test
173
173
174
-
Run [`npx wrangler dev --remote`](/workers/wrangler/commands/#dev) to test your Worker remotely before deploying to Cloudflare's global network. Local mode support does not exist for Browser Rendering so `--remote` is required.
174
+
Run `npx wrangler dev` to test your Worker locally or run [`npx wrangler dev --remote`](/workers/wrangler/commands/#dev) to test your Worker remotely before deploying to Cloudflare's global network.
175
175
176
176
To test taking your first screenshot, go to the following URL:
0 commit comments