Files
blockly/tests/scripts/get_selenium.sh
2018-11-19 13:28:59 -08:00

15 lines
306 B
Bash
Executable File

#!/bin/bash
DIR="../webdriverio-test"
FILE=selenium-server-standalone-3.9.1.jar
if [ ! -d $DIR ]; then
mkdir $DIR
fi
echo "downloading selenium jar"
if [ ! -f $DIR/$FILE ]; then
cd $DIR && curl -O http://selenium-release.storage.googleapis.com/3.9/selenium-server-standalone-3.9.1.jar
sleep 5
fi