-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Update faq.mdx #25884
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update faq.mdx #25884
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -50,7 +50,7 @@ There is no fixed limit on the number of requests per browser session. A single | |||
|
|
||||
| ## Errors & Troubleshooting | ||||
|
|
||||
| ### I see `Cannot read properties of undefined (reading 'fetch')` when using Browser Rendering. How do I fix this? | ||||
| ### `Cannot read properties of undefined (reading 'fetch')` | ||||
|
|
||||
| This error typically occurs because your Puppeteer launch is not receiving the Browser binding. To resolve: Pass your Browser binding into `puppeteer.launch`. | ||||
|
|
||||
|
|
@@ -83,8 +83,19 @@ Keep in mind that `page.evaluate` can only return primitive types like strings, | |||
|
|
||||
| It may be because you increased the height and width of the viewport. To fix this, increase the value of the `deviceScaleFactor` (default is 1). | ||||
|
|
||||
| ### 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? | ||||
| ### `Error processing the request: Unable to create new browser: code: 429: message: Browser time limit exceeded for today` | ||||
|
|
||||
| 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. | ||||
|
|
||||
| To resolve: [Upgrade to a Workers Paid plan](/workers/platform/pricing/) which allows for more than 10 minutes of usage a day and has higher [limits](/browser-rendering/platform/limits/#workers-paid). If you recently upgraded but still see this error, try redeploying your Worker to ensure your usage is correctly associated with your new plan. | ||||
|
|
||||
| ### `422 Unprocessable Entity` | ||||
|
|
||||
| A `422 Unprocessable Entity` error usually means that Browser Rendering wasn’t able to complete an action because of an issue with the site. | ||||
|
|
||||
| This can happen if: | ||||
| - The website consumes too much memory during rendering. | ||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||
| - The page itself crashed or returned an error before the action completed. | ||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||
| - The request exceeded one of the [timeout limits](/browser-rendering/reference/timeouts/) for page load, element load, or an action. | ||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||
|
|
||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||
| Most often, this error is caused by a timeout. You can review the different timers and their limits in the [REST API timeouts reference](/browser-rendering/reference/timeouts/). | ||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added the step they can take - is this right?