Upgrading selenium to version 2.50.1

This commit is contained in:
Michael Mintz 2016-02-06 02:29:46 -05:00
parent e8ced79882
commit 0729288999
8 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,4 @@
selenium==2.50.0
selenium==2.50.1
nose==1.3.7
pytest==2.8.5
flake8==2.5.1

View File

@ -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:

View File

@ -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
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

View File

@ -1,2 +1,2 @@
#!/bin/bash
java -jar selenium-server-standalone-2.50.0.jar -role hub
java -jar selenium-server-standalone-2.50.1.jar -role hub

View File

@ -1,4 +1,4 @@
selenium==2.50.0
selenium==2.50.1
nose==1.3.7
pytest==2.8.5
flake8==2.5.1

View File

@ -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():

View File

@ -1,4 +1,4 @@
selenium==2.48.0
selenium==2.50.1
nose==1.3.7
pytest==2.8.5
flake8==2.5.1

View File

@ -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',