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
This commit is contained in:
Marton Kiss 2015-01-21 14:47:02 +01:00
parent 61a098a0f9
commit 8f2781e31b
1 changed files with 1 additions and 1 deletions

View File

@ -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 ----