Skip to content

Commit 42a6bbf

Browse files
Keep selenium==2.52.0 in Travis.
Version >=2.53.0 is breaking Unselect From List By Value.
1 parent 2a4e551 commit 42a6bbf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis_python_dep.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ set -ev
33
PYTHON_VERSION=`python -c "import sys; print(sys.version[:3])"`
44
if [ "${PYTHON_VERSION}" = "2.6" ]; then
55
pip install robotframework
6-
pip install selenium
6+
pip install selenium==2.52.0
77
pip install decorator
88
pip install docutils
99
pip install future
1010
pip install mockito
1111
elif [ "${PYTHON_VERSION}" = "2.7" ]; then
1212
pip install robotframework
13-
pip install selenium
13+
pip install selenium==2.52.0
1414
pip install decorator
1515
pip install docutils
1616
pip install future
1717
pip install mockito
1818
elif [ "${PYTHON_VERSION}" = "3.4" ]; then
1919
pip install robotframework
20-
pip install selenium
20+
pip install selenium==2.52.0
2121
pip install decorator
2222
pip install docutils
2323
pip install future

0 commit comments

Comments
 (0)