I'm using pytest framework and selenium to test my code.
Firefox.__init__(self, executable_path=geckodriver_path, firefox_profile=self.profile, service_log_path=common_strings.geckodriver_log_path)
I find only solutions on how to make Selenium open developer edition instead of the normal edition but in my case, I want the opposite. For some reason, Selenium opens the developer edition and I actually need the normal edition to test my code.
Any suggestions or thoughts why it happens?