Skip to content

Commit e9f23aa

Browse files
committed
added flag options as None types and moved user-data-dir back to original location
1 parent b6a6d07 commit e9f23aa

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

browserpilot/agents/gpt_selenium_agent.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
from .compilers.instruction_compiler import InstructionCompiler
1919
from .memories import Memory
2020

21+
2122
TIME_BETWEEN_ACTIONS = 0.01
2223

2324
import logging
@@ -56,7 +57,6 @@ def __init__(
5657
instruction_output_file=None,
5758
close_after_completion=True,
5859
remote_url=None,
59-
desired_capabilities=None,
6060
):
6161
"""Initialize the agent.
6262
@@ -124,19 +124,20 @@ def __init__(
124124
_chrome_options.add_argument('--disable-blink-features=AutomationControlled')
125125
_chrome_options.add_experimental_option("excludeSwitches", ["enable-automation"])
126126
_chrome_options.add_experimental_option('useAutomationExtension', False)
127-
127+
_chrome_options.add_argument(f"user-data-dir={user_data_dir}")
128128
self.headless = headless
129129
if headless:
130130
_chrome_options.add_argument("--headless")
131131
for option in chrome_options:
132-
_chrome_options.add_argument(f"{option}={chrome_options[option]}")
132+
if chrome_options[option] == None:
133+
_chrome_options.add_argument(f"{option}")
134+
else:
135+
_chrome_options.add_argument(f"{option}={chrome_options[option]}")
133136

134137
# Check if remote_url is set and conditionally set the driver to a remote endpoint
135138
if remote_url:
136-
_chrome_options.add_argument(f"--user-data-dir=/home/seluser/{user_data_dir}")
137139
self.driver = webdriver.Remote(command_executor=remote_url, options=_chrome_options)
138140
else:
139-
_chrome_options.add_argument(f"user-data-dir={user_data_dir}")
140141
# Instantiate Service with the path to the chromedriver and the options.
141142
service = Service(chromedriver_path)
142143
self.driver = webdriver.Chrome(service=service, options=_chrome_options )

0 commit comments

Comments
 (0)