Index: test/runners/firefox_process.js |
=================================================================== |
--- a/test/runners/firefox_process.js |
+++ b/test/runners/firefox_process.js |
@@ -19,17 +19,19 @@ |
const {Builder} = require("selenium-webdriver"); |
const firefox = require("selenium-webdriver/firefox"); |
require("geckodriver"); |
const {executeScript} = require("./webdriver"); |
const {ensureFirefox} = require("./firefox_download"); |
-const FIREFOX_VERSION = "56.0"; |
+// Firefox 57 seems to be the minimum to reliably run with WebDriver |
+// on certain system configurations like Debian 9, TravisCI. |
+const FIREFOX_VERSION = "57.0"; |
function runScript(firefoxPath, script, scriptName, scriptArgs) |
{ |
let binary = new firefox.Binary(firefoxPath); |
binary.addArguments("-headless"); |
const options = new firefox.Options() |
.setBinary(binary); |