So i did this for a Python Selenium Projekt:
You can do this by providing your chrome profile to the selenium.
First type this into your chrome address bar chrome://version/ and copy the profile path.
Note :- Remove the Default from the path i.e. if the path is /home/aditya/.config/google-chrome/Default then after removing the Default, the path will be /home/aditya/.config/google-chrome
then paste the profile path into the following code :-
options = webdriver.ChromeOptions()
options.add_argument("user-data-dir=/home/aditya/.config/google-chrome") # profile path
driver = webdriver.Chrome(chrome_options=options)
driver.get("https://www.google.com")
Now i want to undo this i reinstalled Selenium and tried some other things but nothing worked! Can anyone help?