Fix CSIT Robot ExtendedSelenium2 library issues 73/27973/1
authorGary Wu <gary.i.wu@huawei.com>
Thu, 11 Jan 2018 19:37:27 +0000 (11:37 -0800)
committerGary Wu <gary.i.wu@huawei.com>
Thu, 11 Jan 2018 19:39:20 +0000 (11:39 -0800)
The latest versions of the robotframework-selenium2library
and robotframework-extendedselenium2library seem to be
incompatible.  This fixes the two versions to a known
good old version set.

Change-Id: Iec8aedc2c9757bbc8787be128eeda1cb31272219
Issue-ID: INT-379
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
test/csit/run-csit.sh

index 3070239..4b2a571 100755 (executable)
@@ -94,7 +94,7 @@ if ! type pybot > /dev/null; then
 fi
 
 # install required Robot libraries
-pip install --upgrade robotframework-extendedselenium2library
+pip install robotframework-selenium2library==1.8.0 robotframework-extendedselenium2library==0.9.1
 
 # install eteutils
 mkdir -p ${ROBOT_VENV}/src/onap
@@ -102,6 +102,8 @@ rm -rf ${ROBOT_VENV}/src/onap/testsuite
 git clone https://gerrit.onap.org/r/testsuite/python-testing-utils.git ${ROBOT_VENV}/src/onap/testsuite/python-testing-utils
 pip install --upgrade ${ROBOT_VENV}/src/onap/testsuite/python-testing-utils
 
+pip freeze
+
 # install chrome driver
 if [ ! -x ${ROBOT_VENV}/bin/chromedriver ]; then
     pushd ${ROBOT_VENV}/bin