From b970176769fb32e3cf1762bd633e47b0a703d06a Mon Sep 17 00:00:00 2001
From: Kathy <153706637+kathayl@users.noreply.github.com>
Date: Thu, 6 Nov 2025 14:47:12 -0800
Subject: [PATCH] Update timeouts.mdx
we've increased waitForTimeout to five min
---
src/content/docs/browser-rendering/reference/timeouts.mdx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/content/docs/browser-rendering/reference/timeouts.mdx b/src/content/docs/browser-rendering/reference/timeouts.mdx
index 837083892156d8..396a18f1679f34 100644
--- a/src/content/docs/browser-rendering/reference/timeouts.mdx
+++ b/src/content/docs/browser-rendering/reference/timeouts.mdx
@@ -16,7 +16,7 @@ Each timer controls a specific part of the rendering lifecycle — from page loa
| `goToOptions.timeout` | Time to wait for the page to load before timeout. | 30 s | 60 s |
| `goToOptions.waitUntil` | Time until page load considered complete:
`load` = full page load, including resources, like images and stylesheets.
`Event.domcontentloaded` = waits until the DOM content has been fully loaded, fires before the page `load` event.
`Event.networkidle0` = there are no active network connections for at least 500 ms.
`Event.networkidle2` = there are no more than two active network connections for at least 500 ms. | — | — |
| `waitForSelector` | Time to wait for a specific element (any CSS selector) to appear on the page. | null | 60 s |
-| `waitForTimeout` | Additional amount of time to wait after the page has loaded to proceed with actions. | null | 60 s |
+| `waitForTimeout` | Additional amount of time to wait after the page has loaded to proceed with actions. | null | 5 min |
| `actionTimeout` | Time to wait for the action itself (for example: a screenshot, PDF, or scrape) to complete after the page has loaded. | null | 5 min |
| `PDFOptions.timeout` | Same as `actionTimeout`, but only applies to the [/pdf endpoint](/browser-rendering/rest-api/pdf-endpoint/). | 30 s | 5 min |