I am loading Firefox with an extension list so...
ffprofile = webdriver.FirefoxProfile()
ffprofile.add_extension(extension="ff_extensions/myextension.xpi")
driver = webdriver.Firefox(firefox_profile=ffprofile)
return driver
This works but the extension opens up it's install complete splash screen. Is there a way to disable these from showing or a way to close all tabs on launch?