Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Selenium by (7k points)

I want to update Selenium version 3.6 and which is the best version of FF to use if Gecko driver is not used?

1 Answer

0 votes
by (31.9k points)
edited by

Each Selenium release should support each version of Mozilla where the property "marionette" needs to be set to true either by default or through configuration as follows:

cap = DesiredCapabilities().FIREFOX

cap["marionette"] = True

But if you are working with legacy releases GeckoDriver still works and you need to explicitly set the property "marionette" to false as follows:

cap = DesiredCapabilities().FIREFOX

cap["marionette"] = False

Want to learn Selenium, checkout our Selenium training.

Browse Categories

...