Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 7966912

Browse files
committed
Updating to Selenium 2.24.
1 parent 2ec4f71 commit 7966912

6 files changed

+8
-16
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,4 @@ A script is included to do the download for you - run with (add the --nocd optio
115115

116116
Start the selenium standalone with
117117

118-
java -jar selenium/selenium-server-standalone-2.33.0.jar -Dwebdriver.chrome.driver=./selenium/chromedriver
118+
java -jar selenium/selenium-server-standalone-2.34.0.jar -Dwebdriver.chrome.driver=./selenium/chromedriver

bin/install_selenium_standalone

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var AdmZip = require('adm-zip')
1111
// Thanks to http://www.hacksparrow.com/using-node-js-to-download-files.html
1212
// for the outline of this code.
1313
var SELENIUM_URL =
14-
'http://selenium.googlecode.com/files/selenium-server-standalone-2.33.0.jar';
14+
'http://selenium.googlecode.com/files/selenium-server-standalone-2.34.0.jar';
1515
var CHROMEDRIVER_URL_MAC =
1616
'https://chromedriver.googlecode.com/files/chromedriver_mac32_2.0.zip';
1717
var CHROMEDRIVER_URL_LINUX32 =

conf.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ exports.config = {
99
// 3. sauceUser/sauceKey - to use remote Selenium servers via SauceLabs.
1010

1111
// The location of the selenium standalone server .jar file.
12-
seleniumServerJar: './selenium/selenium-server-standalone-2.33.0.jar',
12+
seleniumServerJar: './selenium/selenium-server-standalone-2.34.0.jar',
1313
// The port to start the selenium server on, or null if the server should
1414
// find its own unused port.
1515
seleniumPort: null,
@@ -39,6 +39,8 @@ exports.config = {
3939
// ----- Capabilities to be passed to the webdriver instance.
4040
// For a full list of available capabilities, see
4141
// https://code.google.com/p/selenium/wiki/DesiredCapabilities
42+
// and
43+
// https://code.google.com/p/selenium/source/browse/javascript/webdriver/capabilities.js
4244
capabilities: {
4345
'browserName': 'chrome'
4446
},

example/onJasmineNodeSpec.js

+1-6
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,7 @@ describe('angularjs homepage', function() {
1414

1515
var driver = new webdriver.Builder().
1616
usingServer('http://localhost:4444/wd/hub').
17-
withCapabilities({
18-
'browserName': 'chrome',
19-
'version': '',
20-
'platform': 'ANY',
21-
'javascriptEnabled': true
22-
}).build();
17+
withCapabilities(webdriver.Capabilities.chrome()).build();
2318

2419
driver.manage().timeouts().setScriptTimeout(10000);
2520
var ptor = protractor.wrapDriver(driver);

example/onMocha.js

+1-6
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,7 @@ describe('angularjs.org homepage', function() {
1818
before(function() {
1919
driver = new webdriver.Builder().
2020
usingServer('http://localhost:4444/wd/hub').
21-
withCapabilities({
22-
'browserName': 'chrome',
23-
'version': '',
24-
'platform': 'ANY',
25-
'javascriptEnabled': true
26-
}).build();
21+
withCapabilities(webdriver.Capabilities.chrome()).build();
2722

2823
driver.manage().timeouts().setScriptTimeout(10000);
2924
ptor = protractor.wrapDriver(driver);

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
],
1313
"author": "Julie Ralph <[email protected]>",
1414
"dependencies": {
15-
"selenium-webdriver": ">2.32.1",
15+
"selenium-webdriver": "~2.34.0",
1616
"minijasminenode": "~0.2.0",
1717
"saucelabs": "~0.1.0",
1818
"glob": ">=3.1.14",

0 commit comments

Comments
 (0)