5

When I execute

driver = webdriver.Chrome('/Users/sunghunkwak/PythonTesting/chromedriver')
driver.get("https://gmail.com")

it always opens incognito mode (secrete, private mode). But, I want to use the original Chrome. How can I do it?

Thank you.

null_override
  • 467
  • 3
  • 10
  • 30
  • Does this answer your question? [Python/Selenium incognito/private mode](https://stackoverflow.com/questions/27630190/python-selenium-incognito-private-mode) – tbhaxor Sep 20 '20 at 19:47
  • 2
    that is for private window, OP wants normal window so do I. – rahoolm Apr 07 '22 at 03:08

1 Answers1

-1

Try to check if you have added some arguments into the Chrome options, i.e:

chrome_options.add_argument("--incognito")
Owen Valentinus
  • 611
  • 4
  • 12