| 268 | |
| 269 | |
| 270 | class FirefoxDriver(BrowserDriver): |
| 271 | def __init__(self, hostname, port): |
| 272 | from selenium.webdriver.firefox.options import Options |
| 273 | |
| 274 | options = Options() |
| 275 | options.add_argument("--headless") |
| 276 | |
| 277 | super().__init__(hostname, port, webdriver.Firefox(options=options)) |
| 278 | |
| 279 | |
| 280 | def _load_pyarrow_in_runner(driver, wheel_name): |
no outgoing calls
no test coverage detected