Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: test/runners/firefox_process.js

Issue 29858555: Issue 6391 - WebDriver: Fix runtime problen with Gecko and Firefox (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Patch Set: Fixed Firefox too and now run by default also with Firefox Created Aug. 21, 2018, 2 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/runners/firefox_process.js
===================================================================
--- a/test/runners/firefox_process.js
+++ b/test/runners/firefox_process.js
@@ -19,17 +19,17 @@
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";
+const FIREFOX_VERSION = "57.0";
Sebastian Noack 2018/08/22 17:02:04 From the issue description it isn't clear to me wh
hub 2018/08/22 17:36:55 On *some* systems (Debian 9, TravisCI, even some m
Sebastian Noack 2018/08/22 18:29:05 There are two level of support. We discourage user
function runScript(firefoxPath, script, scriptName, scriptArgs)
{
let binary = new firefox.Binary(firefoxPath);
binary.addArguments("-headless");
const options = new firefox.Options()
.setBinary(binary);

Powered by Google App Engine
This is Rietveld