From: Gary Wu Date: Thu, 11 Jan 2018 19:37:27 +0000 (-0800) Subject: Fix CSIT Robot ExtendedSelenium2 library issues X-Git-Tag: sniroemulator-1.0.0~328 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=2b7aef3e38d07551f9c5ca184f486cd5f574c209;p=integration.git Fix CSIT Robot ExtendedSelenium2 library issues 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 --- diff --git a/test/csit/run-csit.sh b/test/csit/run-csit.sh index 3070239b7..4b2a57181 100755 --- a/test/csit/run-csit.sh +++ b/test/csit/run-csit.sh @@ -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