| Index: test/browsers/firefox.js | 
| diff --git a/test/browsers/firefox.js b/test/browsers/firefox.js | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..0b4bd9c96917f066dab77ff801c34dc5e87a012a | 
| --- /dev/null | 
| +++ b/test/browsers/firefox.js | 
| @@ -0,0 +1,54 @@ | 
| +/* | 
| + * This file is part of Adblock Plus <https://adblockplus.org/>, | 
| + * Copyright (C) 2006-present eyeo GmbH | 
| + * | 
| + * Adblock Plus is free software: you can redistribute it and/or modify | 
| + * it under the terms of the GNU General Public License version 3 as | 
| + * published by the Free Software Foundation. | 
| + * | 
| + * Adblock Plus is distributed in the hope that it will be useful, | 
| + * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
| + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
| + * GNU General Public License for more details. | 
| + * | 
| + * You should have received a copy of the GNU General Public License | 
| + * along with Adblock Plus.  If not, see <http://www.gnu.org/licenses/>. | 
| + */ | 
| + | 
| +"use strict"; | 
| + | 
| +const FIREFOX_VERSION = "57.0"; | 
| + | 
| +const webdriver = require("selenium-webdriver"); | 
| +const firefox = require("selenium-webdriver/firefox"); | 
| +const {Command} = require("selenium-webdriver/lib/command"); | 
| +const {ensureFirefox} = require("../../adblockpluscore/test/runners/" + | 
| +                                "firefox_download"); | 
| + | 
| +exports.platform = "gecko"; | 
| + | 
| +exports.getDriver = function(devenvPathAbsolute) | 
| +{ | 
| +  return ensureFirefox(FIREFOX_VERSION).then(firefoxPath => | 
| +  { | 
| +    let binary = new firefox.Binary(firefoxPath); | 
| +    binary.addArguments("-headless"); | 
| + | 
| +    let driver = new webdriver.Builder() | 
| +      .forBrowser("firefox") | 
| +      .setFirefoxOptions(new firefox.Options().setBinary(binary)) | 
| +      .build(); | 
| + | 
| +    let cmd = new Command("moz-install-web-ext") | 
| +      .setParameter("path", devenvPathAbsolute) | 
| +      .setParameter("temporary", true); | 
| + | 
| +    driver.getExecutor().defineCommand( | 
| +      cmd.getName(), "POST", | 
| +      "/session/:sessionId/moz/addon/install" | 
| +    ); | 
| +    driver.schedule(cmd, `installWebExt(${devenvPathAbsolute})`); | 
| + | 
| +    return driver; | 
| +  }); | 
| +}; | 
|  |