You are here

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

#!/bin/bash

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

File

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