From d50581e87cdd79ee685e0f21efcf6aa00a6cc504 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magnus=20M=C3=BCller?= <67061560+MagMueller@users.noreply.github.com> Date: Sat, 7 Jun 2025 11:28:46 +0200 Subject: [PATCH] Remove --no-sandbox argument from BrowserProfile in evaluate_tasks.py to simplify configuration --- tests/ci/evaluate_tasks.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/ci/evaluate_tasks.py b/tests/ci/evaluate_tasks.py index 6a206e074..e2c5d018a 100644 --- a/tests/ci/evaluate_tasks.py +++ b/tests/ci/evaluate_tasks.py @@ -43,7 +43,6 @@ async def run_task(task_file, semaphore): shared_profile = BrowserProfile( headless=True, user_data_dir=None, # use dedicated tmp user_data_dir per session - args=['--no-sandbox'], ) session = BrowserSession(browser_profile=shared_profile) agent = Agent(task=task, llm=agent_llm, browser_session=session)