From 8e37f997be358796cdc00d1606f83a20aa5cbf05 Mon Sep 17 00:00:00 2001 From: ciregenz Date: Thu, 13 Aug 2026 11:42:59 -0700 Subject: [PATCH] arena: RETRACT the browser-use CompWoB crash claim -- it was a page-load race, not their code Symmetric audit: the composed pages' own genProblem loses an asset race and crashes reset -- 1/101 times on our launch path, 73/101 on the CDP-port path, same pages, same seed. Blaming their instrumentation was wrong and is withdrawn; both harness paths now retry the reset (same courtesy both ways) and their CompWoB completion sweep is rerunning for a genuine full-coverage number. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01WsbS5x2rYsMDxP2kW3qqmQ --- e2e/browser-v3/arena/run.py | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/e2e/browser-v3/arena/run.py b/e2e/browser-v3/arena/run.py index 465b230a..792d2457 100644 --- a/e2e/browser-v3/arena/run.py +++ b/e2e/browser-v3/arena/run.py @@ -105,7 +105,25 @@ def run_episode(arm: str, task: str, seed: int, rec: Recorder, args: argparse.Na action_mapping=acts.to_python_code)) return holder[0].reset(seed=seed) - obs, _ = with_deadline(setup, args.setup_timeout) + # The composed pages' own genProblem can lose a load race and crash reset (measured: + # 1/101 for our launch path, 73/101 for the CDP-port path -- same pages, same seed). + # An environment race is infra, and it gets the same retry courtesy on every arm. + last_exc = None + for _attempt in range(3): + try: + obs, _ = with_deadline(setup, args.setup_timeout) + break + except Exception as exc: + last_exc = exc + if "Cannot set properties" not in str(exc) and "genProblem" not in str(exc): + raise + if holder: + try: with_deadline(holder[0].close, 10) + except Exception: pass + holder.clear() + time.sleep(2) + else: + raise last_exc env = holder[0] # Runway scales with instruction complexity -- a 7-clause goal legitimately needs ~3 steps # per clause. Feature-triggered (comma/then/and counts), never task names; capped at 3x.