When I launch Chrome with Selenium like this...
from selenium import webdriver
driver = webdriver.Chrome("/path/to/chromedriver")
... I get a "clean" Chrome instance with no browsing history and none of my stored data from the normal installation of Chrome on my computer.
I want to open Chrome with Selenium but have the bookmarks, history, cookies, cache, etc. from my default Chrome installation available in the opened browser.
How can I do this?