File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ export const webvoyager: EvalFunction = async ({
38
38
39
39
// Start collecting screenshots in parallel
40
40
const screenshotCollector = new ScreenshotCollector ( stagehand . page , {
41
- interval : 2000 , // Capture every 2 seconds
42
41
maxScreenshots : 10 , // Keep last 10 screenshots
43
42
captureOnNavigation : true , // Also capture on page navigation
44
43
} ) ;
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export class ScreenshotCollector {
18
18
19
19
constructor ( page : Page , options : ScreenshotCollectorOptions = { } ) {
20
20
this . page = page ;
21
- this . interval = options . interval || 2000 ;
21
+ this . interval = options . interval || 5000 ;
22
22
this . maxScreenshots = options . maxScreenshots || 10 ;
23
23
this . captureOnNavigation = options . captureOnNavigation ?? true ;
24
24
}
You can’t perform that action at this time.
0 commit comments