selenium keep window open python

Solutions on MaxInterview for selenium keep window open python by the best coders in the world

showing results for - "selenium keep window open python"
Roberta
21 Aug 2016
1options = webdriver.ChromeOptions()
2options.add_experimental_option("detach", True)
3driver = webdriver.Chrome(chrome_options=options, executable_path=r'C:\WebDrivers\chromedriver.exe')