|
18 | 18 | from .compilers.instruction_compiler import InstructionCompiler
|
19 | 19 | from .memories import Memory
|
20 | 20 |
|
| 21 | + |
21 | 22 | TIME_BETWEEN_ACTIONS = 0.01
|
22 | 23 |
|
23 | 24 | import logging
|
@@ -56,7 +57,6 @@ def __init__(
|
56 | 57 | instruction_output_file=None,
|
57 | 58 | close_after_completion=True,
|
58 | 59 | remote_url=None,
|
59 |
| - desired_capabilities=None, |
60 | 60 | ):
|
61 | 61 | """Initialize the agent.
|
62 | 62 |
|
@@ -124,19 +124,20 @@ def __init__(
|
124 | 124 | _chrome_options.add_argument('--disable-blink-features=AutomationControlled')
|
125 | 125 | _chrome_options.add_experimental_option("excludeSwitches", ["enable-automation"])
|
126 | 126 | _chrome_options.add_experimental_option('useAutomationExtension', False)
|
127 |
| - |
| 127 | + _chrome_options.add_argument(f"user-data-dir={user_data_dir}") |
128 | 128 | self.headless = headless
|
129 | 129 | if headless:
|
130 | 130 | _chrome_options.add_argument("--headless")
|
131 | 131 | 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]}") |
133 | 136 |
|
134 | 137 | # Check if remote_url is set and conditionally set the driver to a remote endpoint
|
135 | 138 | if remote_url:
|
136 |
| - _chrome_options.add_argument(f"--user-data-dir=/home/seluser/{user_data_dir}") |
137 | 139 | self.driver = webdriver.Remote(command_executor=remote_url, options=_chrome_options)
|
138 | 140 | else:
|
139 |
| - _chrome_options.add_argument(f"user-data-dir={user_data_dir}") |
140 | 141 | # Instantiate Service with the path to the chromedriver and the options.
|
141 | 142 | service = Service(chromedriver_path)
|
142 | 143 | self.driver = webdriver.Chrome(service=service, options=_chrome_options )
|
|
0 commit comments