MCPcopy Create free account
hub / github.com/apache/arrow / ChromeDriver

Class ChromeDriver

python/scripts/run_emscripten_tests.py:258–267  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

256
257
258class ChromeDriver(BrowserDriver):
259 def __init__(self, hostname, port):
260 from selenium.webdriver.chrome.options import Options
261
262 options = Options()
263 options.add_argument("--headless")
264 options.add_argument("--no-sandbox")
265 driver = webdriver.Chrome(options=options)
266 driver.command_executor._client_config.timeout = 1200
267 super().__init__(hostname, port, driver)
268
269
270class FirefoxDriver(BrowserDriver):

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected