Skip to content

Commit c0baabc

Browse files
committed
Merge pull request #10 from mdmintz/upgrade-to-selenium-2-50-0
Upgrade to Selenium 2.50.0 (SeleniumBase 1.1.21)
2 parents d976aca + 757f6ec commit c0baabc

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

Diff for: integrations/docker/docker_requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
selenium==2.48.0
1+
selenium==2.50.0
22
nose==1.3.7
33
pytest==2.8.5
44
flake8==2.5.1

Diff for: integrations/docker/docker_setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name='seleniumbase',
11-
version='1.1.20',
11+
version='1.1.21',
1212
author='Michael Mintz',
1313
author_email='@mintzworld',
1414
maintainer='Michael Mintz',

Diff for: integrations/selenium_grid/start-selenium-node.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
cd c:\
2-
java -jar selenium-server-standalone-2.48.2.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.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

Diff for: integrations/selenium_grid/start-selenium-server.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/bash
2-
java -jar selenium-server-standalone-2.48.2.jar -role hub
2+
java -jar selenium-server-standalone-2.50.0.jar -role hub

Diff for: requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
selenium==2.48.0
1+
selenium==2.50.0
22
nose==1.3.7
33
pytest==2.8.5
44
flake8==2.5.1

Diff for: seleniumbase/core/selenium_launcher.py

+2-2
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.48/selenium-server-standalone-2.48.2.jar")
11-
JAR_FILE = "selenium-server-standalone-2.48.2.jar"
10+
"/2.50/selenium-server-standalone-2.50.0.jar")
11+
JAR_FILE = "selenium-server-standalone-2.50.0.jar"
1212

1313

1414
def download_selenium():

Diff for: setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
setup(
88
name='seleniumbase',
9-
version='1.1.20',
9+
version='1.1.21',
1010
url='https://github.com/mdmintz/SeleniumBase',
1111
author='Michael Mintz',
1212
author_email='@mintzworld',
1313
maintainer='Michael Mintz',
1414
description='The SeleniumBase Automation Framework',
1515
license='The MIT License',
1616
install_requires=[
17-
'selenium==2.48.0',
17+
'selenium==2.50.0',
1818
'nose==1.3.7',
1919
'pytest==2.8.5',
2020
'flake8==2.5.1',

0 commit comments

Comments
 (0)