wkappbot-webbot
★★☆
CDP Runtime.enable with retry
Runtime.enable + Page.enable + DOM.enable can fail on first call. EnableRuntimeWithRetry: 4 total attempts (0..maxRetries=3), exponential backoff 500ms??000ms??000ms. Final failure throws TimeoutException.
Steps
- attempt <= maxRetries (default 3) ??4 total...
- delay = 500 * (1 << attempt): 500ms, 1000ms,...
- Only retries on TimeoutException (not other...
- Throw TimeoutException after all attempts ex...
- [AUDIT 2026-05-29] EnableRuntimeWithRetry si...
- Verified 2026-06-02: ev-runtime-enable-attem...
- [AUDIT 2026-06-03] source_refs broken: stale...
- [AUDIT 2026-06-04] CdpClient.cs refactored -...