Skip to content

Instantly share code, notes, and snippets.

View wyattbarrett's full-sized avatar

Wyatt Barrett wyattbarrett

  • Auction Technology Group
View GitHub Profile
@wyattbarrett
wyattbarrett / installHub.sh
Last active April 25, 2018 15:52 — forked from dhrrgn/install.sh
Setting up Selenium as a Service in OS X
#!/usr/bin/env bash
if [ ! -d /usr/local/selenium/ ]; then
sudo mkdir /usr/local/selenium/
fi
if [ ! -f /usr/local/selenium/selenium-server-standalone-3.11.0.jar ]; then
sudo curl -o /usr/local/selenium/selenium-server-standalone-3.11.0.jar https://selenium-release.storage.googleapis.com/3.11/selenium-server-standalone-3.11.0.jar
fi