Skip to content

Commit

Permalink
chore(ci): Update webdriver versions in ci configs. (#3355)
Browse files Browse the repository at this point in the history
* chore(ci): Update webdriver versions in ci configs.
  • Loading branch information
heathkit committed Jul 12, 2016
1 parent 5075e86 commit b003144
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
8 changes: 4 additions & 4 deletions spec/ciFullConf.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ exports.config = {
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
'build': process.env.TRAVIS_BUILD_NUMBER,
'name': 'Protractor suite tests',
'version': '48',
'selenium-version': '2.53.0',
'chromedriver-version': '2.21',
'version': '51',
'selenium-version': '2.53.1',
'chromedriver-version': '2.22',
'platform': 'OS X 10.9'
}, {
'browserName': 'firefox',
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
'build': process.env.TRAVIS_BUILD_NUMBER,
'name': 'Protractor suite tests',
'version': '44',
'selenium-version': '2.53.0'
'selenium-version': '2.53.1'
}],

baseUrl: env.baseUrl + '/ng1/',
Expand Down
6 changes: 3 additions & 3 deletions spec/ciNg2Conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ exports.config.multiCapabilities = [{
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
'build': process.env.TRAVIS_BUILD_NUMBER,
'name': 'Protractor suite tests',
'version': '48',
'selenium-version': '2.53.0',
'chromedriver-version': '2.21',
'version': '51',
'selenium-version': '2.53.1',
'chromedriver-version': '2.22',
'platform': 'OS X 10.9'
}];
exports.config.capabilities = undefined;
15 changes: 8 additions & 7 deletions spec/ciSmokeConf.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ exports.config = {
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
'build': process.env.TRAVIS_BUILD_NUMBER,
'name': 'Protractor smoke tests',
'version': '48',
'selenium-version': '2.53.0',
'chromedriver-version': '2.21',
'version': '51',
'selenium-version': '2.53.1',
'chromedriver-version': '2.22',
'platform': 'OS X 10.9'
}, {
'browserName': 'firefox',
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
'build': process.env.TRAVIS_BUILD_NUMBER,
'name': 'Protractor smoke tests',
'version': '44',
'selenium-version': '2.53.0'
'selenium-version': '2.53.1'
}, {
'browserName': 'safari',
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
Expand All @@ -48,22 +48,23 @@ exports.config = {
'build': process.env.TRAVIS_BUILD_NUMBER,
'name': 'Protractor smoke tests',
'version': '9',
'selenium-version': '2.44.0'
'selenium-version': '2.44.0' // Use an old version because Safari has
// issues loading pages after 2.44.
}, {
'browserName': 'internet explorer',
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
'build': process.env.TRAVIS_BUILD_NUMBER,
'name': 'Protractor smoke tests',
'version': '11',
'selenium-version': '2.53.0',
'selenium-version': '2.53.1',
'platform': 'Windows 7'
}, {
'browserName': 'internet explorer',
'tunnel-identifier': process.env.TRAVIS_JOB_NUMBER,
'build': process.env.TRAVIS_BUILD_NUMBER,
'name': 'Protractor smoke tests',
'version': '10',
'selenium-version': '2.53.0',
'selenium-version': '2.53.1',
'platform': 'Windows 7'
}],

Expand Down

0 comments on commit b003144

Please sign in to comment.