How to make selenium webdriver open in google chrome without Incognito
问题 I'm using selenium for the past 1 month. I want to create some small applications using selenium. Selenium webdriver opens an incognito window when I run it. Is there any way to make it launch in normal window(i.e which has my accounts logged in)? This is the code which I'm using : (python code in linux) chromedriver = Path to chrome driver os.environ["webdriver.chrome.driver"] = chromedriver driver = webdriver.Chrome(chromedriver) driver.get("http://www.gmail.com") 回答1: If you want to re-use