Skip to content

Commit 0729288

Browse files
committed
Upgrading selenium to version 2.50.1
1 parent e8ced79 commit 0729288

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

integrations/docker/docker_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
selenium==2.50.0
1+
selenium==2.50.1
22
nose==1.3.7
33
pytest==2.8.5
44
flake8==2.5.1

integrations/selenium_grid/ReadMe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ The Selenium Grid Hub allows you to distribute tests to run in parallel across m
44

55
### Running the Selenium Grid Hub
66

7-
You may need to download selenium-server-standalone-2.48.2.jar (or the latest version) separately. That file is not present with this repository to save space. You can download that file from here:
7+
You may need to download selenium-server-standalone-2.50.1.jar (or the latest version) separately. That file is not present with this repository to save space. You can download that file from here:
88
* http://docs.seleniumhq.org/download/
99
or here:
10-
* http://selenium-release.storage.googleapis.com/index.html?path=2.48/
10+
* http://selenium-release.storage.googleapis.com/index.html?path=2.50/
1111
Once you have downloaded the jar file, put it in this folder (the "integrations/selenium_grid" folder).
1212

1313
More detailed info about connecting to the Selenium Grid Hub can be found here:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
cd c:\
2-
java -jar selenium-server-standalone-2.50.0.jar -role node -hub http://[ENTER URL OF THE GRID HUB SERVER]:4444/grid/register -browser browserName=chrome,maxInstances=5 -browser browserName=firefox,maxInstances=5 -browser browserName="internet explorer",maxInstances=1
2+
java -jar selenium-server-standalone-2.50.1.jar -role node -hub http://[ENTER URL OF THE GRID HUB SERVER]:4444/grid/register -browser browserName=chrome,maxInstances=5 -browser browserName=firefox,maxInstances=5 -browser browserName="internet explorer",maxInstances=1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/bash
2-
java -jar selenium-server-standalone-2.50.0.jar -role hub
2+
java -jar selenium-server-standalone-2.50.1.jar -role hub

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
selenium==2.50.0
1+
selenium==2.50.1
22
nose==1.3.7
33
pytest==2.8.5
44
flake8==2.5.1

seleniumbase/core/selenium_launcher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
import time
88

99
SELENIUM_JAR = ("http://selenium-release.storage.googleapis.com"
10-
"/2.50/selenium-server-standalone-2.50.0.jar")
11-
JAR_FILE = "selenium-server-standalone-2.50.0.jar"
10+
"/2.50/selenium-server-standalone-2.50.1.jar")
11+
JAR_FILE = "selenium-server-standalone-2.50.1.jar"
1212

1313

1414
def download_selenium():

server_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
selenium==2.48.0
1+
selenium==2.50.1
22
nose==1.3.7
33
pytest==2.8.5
44
flake8==2.5.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
description='The SeleniumBase Automation Framework',
1515
license='The MIT License',
1616
install_requires=[
17-
'selenium==2.50.0',
17+
'selenium==2.50.1',
1818
'nose==1.3.7',
1919
'pytest==2.8.5',
2020
'flake8==2.5.1',

0 commit comments

Comments
 (0)