← Back to wkappbot-webbot
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.

user/developer
cdpruntimestabilityretryproject

Steps

  1. attempt <= maxRetries (default 3) ??4 total...
  2. delay = 500 * (1 << attempt): 500ms, 1000ms,...
  3. Only retries on TimeoutException (not other...
  4. Throw TimeoutException after all attempts ex...
  5. [AUDIT 2026-05-29] EnableRuntimeWithRetry si...
  6. Verified 2026-06-02: ev-runtime-enable-attem...
  7. [AUDIT 2026-06-03] source_refs broken: stale...
  8. [AUDIT 2026-06-04] CdpClient.cs refactored -...