Closed
Description
Mozilla introduced new WebExtensions API, which works already in Firefox Nightly. The old CPOWs extensions will be deprecated.
Trying to load an extension to Firefox Nightly, Seenium tries to find install.rdf
, which doesn't exist anymore.
var firefox = require('selenium-webdriver/firefox');
var binary = new firefox.Binary('/Applications/FirefoxNightly.app/Contents/MacOS/firefox');
var profile = new firefox.Profile();
profile.addExtension('./build/firefox');
var options = new firefox.Options()
.setProfile(profile)
.setBinary(binary);
this.driver = new firefox.Driver(options);
Any plans to support the new extension format for firefox?