When opening new instance of Firefox using selenium and geckodriver, it opens a brand new Firefox instance. What I want is for the instance opened to be related to my current Firefox browser i.e. the websites i have logged into my browser. I would like the same configuration to stay in new instance opened using gecko and selenium.
from selenium import webdriver
browser = webdriver.Firefox()
browser.get('https://mail.google.com')