I want to open google chrome(which has saved my information like my username and passwords) instead of Chromedriver.exe . I tried some ways like opening chrome profile via:
from selenium.webdriver.chrome.options import Options
options = Options()
# or ->options = webdriver.ChromeOptions()
options.add_argument("--user-data-dir= C:\\Users\\me\\AppData\\Local\\Google\\Chrome\\User Data\\Default")
#or-> options.add_argument("--user-data-dir= C:\\Users\\me\\AppData\\Local\\Google\\Chrome\\User Data")
web=webdriver.Chrome( executable_path="c:\\Users\\me\\.spyder-py3\\chromedriver.exe" , chrome_options=options)
web.get('https://google.com')
and it didn't work.
also I tried web=webdriver.Chrome( 'C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe')
and this way opened original chrome but didn't go to the link .
please tell me a way for using original google chrome instead of chromedriver.