From 2b7aef3e38d07551f9c5ca184f486cd5f574c209 Mon Sep 17 00:00:00 2001 From: Gary Wu Date: Thu, 11 Jan 2018 11:37:27 -0800 Subject: 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 --- test/csit/run-csit.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/csit') 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 -- cgit 1.2.3-korg