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
Copy file name to clipboardExpand all lines: src/content/docs/browser-rendering/faq.mdx
+26-6
Original file line number
Diff line number
Diff line change
@@ -12,19 +12,19 @@ import { GlossaryTooltip } from "~/components";
12
12
13
13
Below you will find answers to our most commonly asked questions. If you cannot find the answer you are looking for, refer to the [Discord](https://discord.cloudflare.com) to explore additional resources.
14
14
15
-
##### Uncaught (in response) TypeError: Cannot read properties of undefined (reading 'fetch')
15
+
###I see `Cannot read properties of undefined (reading 'fetch')` when using Browser Rendering. How do I fix this?
16
16
17
-
Make sure that you are passing your Browser binding to the `puppeteer.launch` api and that you have [Workers Paid plan](/workers/platform/pricing/).
17
+
This error occurs because your Puppeteer launch is not receiving the Browser binding or you are not on a Workers Paid plan.
18
18
19
-
##### Will browser rendering bypass Cloudflare's Bot Protection?
19
+
To resolve: Pass your Browser binding into `puppeteer.launch`.
20
+
21
+
### Will Browser Rendering bypass Cloudflare's Bot Protection?
20
22
21
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.
22
24
23
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.
24
26
25
-
## Puppeteer
26
-
27
-
##### Code generation from strings disallowed for this context while using an Xpath selector
27
+
### Why can't I use an XPath selector when using Browser Rendering with Puppeteer?
28
28
29
29
Currently it is not possible to use Xpath to select elements since this poses a security risk to Workers.
30
30
@@ -50,3 +50,23 @@ Keep in mind that `page.evaluate` can only return primitive types like strings,
50
50
Returning an `HTMLElement` will not work.
51
51
52
52
:::
53
+
54
+
### What are the usage limits and pricing tiers for Cloudflare Browser Rendering and how do I estimate my costs?
55
+
56
+
You can view the complete breakdown of concurrency caps, request rates, timeouts, and REST API quotas on the [limits page](/browser-rendering/platform/limits/).
57
+
58
+
By default, idle browser sessions close after 60 seconds of inactivity. You can adjust this with the [`keep_alive` option](/browser-rendering/platform/puppeteer/#keep-alive).
59
+
60
+
#### Pricing
61
+
62
+
Browser Rendering is currently free up to the limits above until billing begins. Pricing will be announced in advance.
63
+
64
+
### Does Browser Rendering rotate IP addresses for outbound requests?
65
+
66
+
No. Browser Rendering requests originate from Cloudflares global network, but you cannot configure per-request IP rotation. All rendering traffic comes from Cloudflare IP ranges and requests include special headers [(`cf-biso-request-id`, `cf-biso-devtools`)](/browser-rendering/reference/automatic-request-headers/) so origin servers can identify them.
67
+
68
+
### I see `Error processing the request: Unable to create new browser: code: 429: message: Browser time limit exceeded for today`. How do I fix it?
69
+
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
+
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).
0 commit comments