It will be great if you can help me fix issue I am facing around usage of default profile for chrome browser in window .
I wanted to use default profile of a user for chrome browser . I used below path to access default profile for user. When browser opens up it doesn’t use my default profile and launches browser with new profile which prompts for user name and password . Any idea how to use default profile data for chrome browser in window
o = webdriver.ChromeOptions()
o.add_argument = {'--user-data-dir': 'C:\Users\EBUBE\AppData\Local\Google\Chrome\User Data\Default'}
s = Service(CHROME_DRIVER_PATH)
driver = webdriver.Chrome(service=s, options=o)
driver.get("
https://www.instagram.com/")
print(driver.title)
i want my webdriver to open with default profile so that i dont login again to instagram