diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-01-11 11:37:27 -0800 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-01-11 11:39:20 -0800 |
commit | 2b7aef3e38d07551f9c5ca184f486cd5f574c209 (patch) | |
tree | 76bb4fb00279ef23be6d4c206ccd6b43afdca274 | |
parent | 3a12c790a0b743c2a50345515d6d505979a158a5 (diff) |
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 <gary.i.wu@huawei.com>
-rwxr-xr-x | test/csit/run-csit.sh | 4 |
1 files changed, 3 insertions, 1 deletions
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 |