From 07292889995a2d587614f07ab6a56959d37dcb50 Mon Sep 17 00:00:00 2001 From: Michael Mintz Date: Sat, 6 Feb 2016 02:29:46 -0500 Subject: [PATCH] Upgrading selenium to version 2.50.1 --- integrations/docker/docker_requirements.txt | 2 +- integrations/selenium_grid/ReadMe.md | 4 ++-- integrations/selenium_grid/start-selenium-node.bat | 2 +- integrations/selenium_grid/start-selenium-server.sh | 2 +- requirements.txt | 2 +- seleniumbase/core/selenium_launcher.py | 4 ++-- server_requirements.txt | 2 +- setup.py | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/integrations/docker/docker_requirements.txt b/integrations/docker/docker_requirements.txt index db83487e..5bd179f7 100755 --- a/integrations/docker/docker_requirements.txt +++ b/integrations/docker/docker_requirements.txt @@ -1,4 +1,4 @@ -selenium==2.50.0 +selenium==2.50.1 nose==1.3.7 pytest==2.8.5 flake8==2.5.1 diff --git a/integrations/selenium_grid/ReadMe.md b/integrations/selenium_grid/ReadMe.md index 56b45185..1e52aea8 100644 --- a/integrations/selenium_grid/ReadMe.md +++ b/integrations/selenium_grid/ReadMe.md @@ -4,10 +4,10 @@ The Selenium Grid Hub allows you to distribute tests to run in parallel across m ### Running the Selenium Grid Hub -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: +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: * http://docs.seleniumhq.org/download/ or here: -* http://selenium-release.storage.googleapis.com/index.html?path=2.48/ +* http://selenium-release.storage.googleapis.com/index.html?path=2.50/ Once you have downloaded the jar file, put it in this folder (the "integrations/selenium_grid" folder). More detailed info about connecting to the Selenium Grid Hub can be found here: diff --git a/integrations/selenium_grid/start-selenium-node.bat b/integrations/selenium_grid/start-selenium-node.bat index a4200fb8..add08675 100644 --- a/integrations/selenium_grid/start-selenium-node.bat +++ b/integrations/selenium_grid/start-selenium-node.bat @@ -1,2 +1,2 @@ cd c:\ -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 \ No newline at end of file +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 \ No newline at end of file diff --git a/integrations/selenium_grid/start-selenium-server.sh b/integrations/selenium_grid/start-selenium-server.sh index 90b9b9de..5e7c614f 100755 --- a/integrations/selenium_grid/start-selenium-server.sh +++ b/integrations/selenium_grid/start-selenium-server.sh @@ -1,2 +1,2 @@ #!/bin/bash -java -jar selenium-server-standalone-2.50.0.jar -role hub \ No newline at end of file +java -jar selenium-server-standalone-2.50.1.jar -role hub \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 0696a89f..ede9d278 100755 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -selenium==2.50.0 +selenium==2.50.1 nose==1.3.7 pytest==2.8.5 flake8==2.5.1 diff --git a/seleniumbase/core/selenium_launcher.py b/seleniumbase/core/selenium_launcher.py index 70fd8dbd..cedac543 100755 --- a/seleniumbase/core/selenium_launcher.py +++ b/seleniumbase/core/selenium_launcher.py @@ -7,8 +7,8 @@ import urllib import time SELENIUM_JAR = ("http://selenium-release.storage.googleapis.com" - "/2.50/selenium-server-standalone-2.50.0.jar") -JAR_FILE = "selenium-server-standalone-2.50.0.jar" + "/2.50/selenium-server-standalone-2.50.1.jar") +JAR_FILE = "selenium-server-standalone-2.50.1.jar" def download_selenium(): diff --git a/server_requirements.txt b/server_requirements.txt index e3098f4e..7431242e 100755 --- a/server_requirements.txt +++ b/server_requirements.txt @@ -1,4 +1,4 @@ -selenium==2.48.0 +selenium==2.50.1 nose==1.3.7 pytest==2.8.5 flake8==2.5.1 diff --git a/setup.py b/setup.py index 40c59b08..f9b9f9d5 100755 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( description='The SeleniumBase Automation Framework', license='The MIT License', install_requires=[ - 'selenium==2.50.0', + 'selenium==2.50.1', 'nose==1.3.7', 'pytest==2.8.5', 'flake8==2.5.1',