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