My Aim
I've passed my actual profile into ChromeOptions(), so that I can retrieve my actual cookies from my normal Chrome App, I then want to pass these cookies into a new Chrome browser, (as this browser wont be able to use the profile ChromeOptions), so that I can access a certain website using those cookies.
Here's what I tried:
options = webdriver.ChromeOptions()
options.add_argument("C:\\Users\\coderofftheday\\AppData\\Local\\Google\\Chrome\\User Data\\Default")
browser = webdriver.Chrome('chromedriver.exe',options=options)
browser.get('https://www.google.co.uk/')
time.sleep(10)
pprint.pprint(browser.get_cookies())
Unfortunately No cookies for any sites apart from google were printed.