From 74afa65d690bc0b0afdde811e435dbb5675f8e7f Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Mon, 26 May 2025 18:38:30 -0700 Subject: [PATCH] remove dead code, cleanup examples and tests --- browser_use/browser/profile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser_use/browser/profile.py b/browser_use/browser/profile.py index 20ab422d6..a7787a300 100644 --- a/browser_use/browser/profile.py +++ b/browser_use/browser/profile.py @@ -416,7 +416,7 @@ class BrowserLaunchArgs(BaseModel): ) executable_path: str | Path | None = Field( default=None, - validation_alias=AliasChoices('chrome_binary_path', 'executable_path'), + validation_alias=AliasChoices('browser_binary_path', 'chrome_binary_path'), description='Path to the chromium-based browser executable to use.', ) headless: bool | None = Field(default=None, description='Whether to run the browser in headless or windowed mode.')