You are here

download-and-run-once-only-selenium-2.53.1.sh in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 8.5

#!/bin/bash

echo "Getting selenium server standalone 2.53.1\n"
wget http://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.1.jar
java -jar selenium-server-standalone-2.31.0.jar -port 4445 > /dev/null &
echo "[  OK  ] Starting Selenium on the 4445 port ..."

File

tests/tools/install-selenium-server/download-and-run-once-only-selenium-2.53.1.sh
View source
  1. #!/bin/bash
  2. echo "Getting selenium server standalone 2.53.1\n"
  3. wget http://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.1.jar
  4. java -jar selenium-server-standalone-2.31.0.jar -port 4445 > /dev/null &
  5. echo "[ OK ] Starting Selenium on the 4445 port ..."