diff --git a/src/content/docs/browser-rendering/faq.mdx b/src/content/docs/browser-rendering/faq.mdx index 6d41618193a60ba..f4d7296107049c7 100644 --- a/src/content/docs/browser-rendering/faq.mdx +++ b/src/content/docs/browser-rendering/faq.mdx @@ -54,10 +54,6 @@ There is no fixed limit on the number of requests per browser session. A single This error typically occurs because your Puppeteer launch is not receiving the Browser binding. To resolve: Pass your Browser binding into `puppeteer.launch`. -### Why is my screenshot blurry? - -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). - ### `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. diff --git a/src/content/docs/browser-rendering/rest-api/screenshot-endpoint.mdx b/src/content/docs/browser-rendering/rest-api/screenshot-endpoint.mdx index 6eb52f3fd1a9451..4fcfb1157c6f812 100644 --- a/src/content/docs/browser-rendering/rest-api/screenshot-endpoint.mdx +++ b/src/content/docs/browser-rendering/rest-api/screenshot-endpoint.mdx @@ -135,6 +135,11 @@ curl -X POST 'https://api.cloudflare.com/client/v4/accounts//browser- --output "advanced-screenshot.png" ``` + + ### Customize CSS and embed custom JavaScript Instruct the browser to go to `https://example.com`, embed custom JavaScript (`addScriptTag`) and add extra styles (`addStyleTag`), both inline (`addStyleTag.content`) and by loading an external stylesheet (`addStyleTag.url`). diff --git a/src/content/docs/browser-rendering/rest-api/snapshot.mdx b/src/content/docs/browser-rendering/rest-api/snapshot.mdx index c1f5d4d6563c76e..bf798eadfad0727 100644 --- a/src/content/docs/browser-rendering/rest-api/snapshot.mdx +++ b/src/content/docs/browser-rendering/rest-api/snapshot.mdx @@ -127,6 +127,12 @@ curl -X POST 'https://api.cloudflare.com/client/v4/accounts//browser- } } ``` + + +