Hi. I have a dos chromedriver window running at work. Is it possible to start chrome without a window appearing?

    1 answer 1

    Try this:

    chromeDriverPath = r'C:\drivers\chromedriver.exe' driver = webdriver.Chrome(chromeDriverPath,chrome_options=options) driver.get("http://google.com") driver.set_window_position(0, 0) driver.set_window_size(0, 0) 
    • Thanks for the answer. I tried, but did not help. - mazdaahiim