 Issue 29866577:
  Issue 6887 - add Chrome to "npm test"  (Closed)
    
  
    Issue 29866577:
  Issue 6887 - add Chrome to "npm test"  (Closed) 
  | Index: test/browser/firefox.js | 
| diff --git a/test/browser/firefox.js b/test/browser/firefox.js | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..0d6ea32c090301d8adc0b33432bfecf9afbe5bfd | 
| --- /dev/null | 
| +++ b/test/browser/firefox.js | 
| @@ -0,0 +1,57 @@ | 
| +/* | 
| 
Sebastian Noack
2018/08/27 19:56:15
See my comments for chrome.js, almost all of them
 
tlucas
2018/08/28 08:18:14
Done.
 | 
| + * 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/>. | 
| + */ | 
| + | 
| +/* eslint-env mocha */ | 
| + | 
| +"use strict"; | 
| + | 
| +const FIREFOX_VERSION = "57.0"; | 
| + | 
| +const path = require("path"); | 
| +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() | 
| +{ | 
| + let driver; | 
| + return ensureFirefox(FIREFOX_VERSION).then(firefoxPath => | 
| + { | 
| + let binary = new firefox.Binary(firefoxPath); | 
| + binary.addArguments("-headless"); | 
| + | 
| + driver = new webdriver.Builder() | 
| + .forBrowser("firefox") | 
| + .setFirefoxOptions(new firefox.Options().setBinary(binary)) | 
| + .build(); | 
| + | 
| + let devenv = "./devenv.gecko"; | 
| + let cmd = new Command("moz-install-web-ext") | 
| + .setParameter("path", path.resolve(devenv)) | 
| + .setParameter("temporary", true); | 
| + | 
| + driver.getExecutor().defineCommand( | 
| + cmd.getName(), "POST", | 
| + "/session/:sessionId/moz/addon/install" | 
| + ); | 
| + driver.schedule(cmd, `installWebExt(${devenv})`); | 
| + }).then(() => driver); | 
| +}; |