Initialize the Selenium WebDriver.
()
| 136 | |
| 137 | |
| 138 | def initialize_driver(): |
| 139 | """Initialize the Selenium WebDriver.""" |
| 140 | chrome_options = webdriver.ChromeOptions() |
| 141 | chrome_options.add_argument("--force-device-scale-factor=1") |
| 142 | chrome_options.add_argument("--window-size=1000,1350") |
| 143 | chrome_options.add_argument("--disable-pdf-viewer") |
| 144 | chrome_options.add_argument("--window-position=0,0") |
| 145 | return helium.start_chrome(headless=False, options=chrome_options) |
| 146 | |
| 147 | |
| 148 | def initialize_agent(model): |
no outgoing calls
no test coverage detected
searching dependent graphs…