From 8f2781e31b817ab795eb4ca487e54598022601bc Mon Sep 17 00:00:00 2001 From: Marton Kiss Date: Wed, 21 Jan 2015 14:47:02 +0100 Subject: [PATCH] Replace Firefox with Chrome in selenium tests functional tests with Firefox 35 are broken due this open FF issue: https://code.google.com/p/selenium/issues/detail?id=8390 Chrome and FF 34 works well, but need to use Chrome because we cannot pin FF to 34.0 in test instances. Chrome must be added to test jobs also. Change-Id: I53d819b78aca26fddbebfc250d2f4dfb4e29ec74 --- protractor.conf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protractor.conf.js b/protractor.conf.js index 394f1d23..5c82af43 100644 --- a/protractor.conf.js +++ b/protractor.conf.js @@ -43,7 +43,7 @@ exports.config = { // For a full list of available capabilities, see // https://code.google.com/p/selenium/wiki/DesiredCapabilities capabilities: { - 'browserName': 'firefox' + 'browserName': 'chrome' }, // ----- More information for your tests ----