from selenium import webdriver
driver = webdriver.Chrome('way//to//chromedriver.exe')
driver.get("https://www.youtube.com/")
I'm trying to launch youtube and be already connected on it but I really have no idea what to do, I tried something with cookies but it doesn't work, any idea ?
PROPER EXPLANATION :
When I run this code, it launch youtube but I'm not connected with my youtube account, I'm in "guest" mode. The thing I would like is to be connected on the browser (with my google account) that selenium just launched. So to do this, I'm trying to use cookies but right now nothing works for me.