We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28a7e4c commit 039ad23Copy full SHA for 039ad23
src/services/browser/BrowserSession.ts
@@ -11,7 +11,7 @@ import { BrowserActionResult } from "../../shared/ExtensionMessage"
11
import { discoverChromeHostUrl, tryChromeHostUrl } from "./browserDiscovery"
12
13
// Timeout constants
14
-const BROWSER_NAVIGATION_TIMEOUT = 15_000 // 15 seconds
+const BROWSER_NAVIGATION_TIMEOUT = 20_000 // 20 seconds
15
16
interface PCRStats {
17
puppeteer: { launch: typeof launch }
@@ -256,7 +256,7 @@ export class BrowserSession {
256
257
// Wait for console inactivity, with a timeout
258
await pWaitFor(() => Date.now() - lastLogTs >= 500, {
259
- timeout: 3_000,
+ timeout: 5_000,
260
interval: 100,
261
}).catch(() => {})
262
0 commit comments