I couldn't find any relevant answers and my question is pretty straight forward.
The context isn't really relevant.
It is very important for me that Selenium uses my normally installed browser (Chrome or Firefox), when doing coded things.
I couldn't find any relevant answers and my question is pretty straight forward.
The context isn't really relevant.
It is very important for me that Selenium uses my normally installed browser (Chrome or Firefox), when doing coded things.
Maybe using your standard profile helps? It did in my case where the website was detecting the Selenium browser. This code solved my problem.
path = str(Path.home())
path = path + "/.mozilla/firefox/xxxx.default-release"
profile = FirefoxProfile(path)
driver = webdriver.Firefox(profile)