You will need the following installed on your machine:
Install Command Line Tools:
In a terminal type the following command:
xcode-select --install
You should see a pop up saying that “xcode-select” requires the command line developer tools. Click Install You will have to accept the license agreement
Install Homebrew:
You can get the latest command to install Homebrew from their website at https://brew.sh/ Alternatively you should be able to run the following command from a terminal:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
After installing run the command:
brew doctor
This will test to make sure everything installed correctly
Install Git
To install Git if it is not already installed, run the following commands from a terminal:
brew update
brew install git
To verify installation run:
git —version
You will need to sign up for an account on github
Clone the repository:
In a terminal run the following in the directory where you would like to clone the Rainforest MBG automation repository:
git clone https://github.com/burbon000/rainforest_kiwi_automation.git
cd rainforest_kiwi_automation
Install Ruby Version Manager(RVM) to manage your Ruby environments. If you want to manage them on your own that is fine, but you need to make sure you are running Ruby 2.3.3 for the scripts:
curl -L https://get.rvm.io | bash -s stable
To verify installation, run:
rvm -v
You must use version 2.3.3 of Ruby. To install version 2.3.3 of Ruby, run the following:
rvm install 2.3.3
If you have multiple versions of Ruby installed, RVM will automatically detect the version of Ruby used by an application based on the Gemfile.
Install bundler and bundle application gems(from within application folder):
gem install bundler
bundle install
Finally you must install selenium driver for the browser to test. Geckodriver for Firefox, Chromedriver for Chrome:
brew install geckodriver
brew install chromedriver
You can then run the tests using the following(from within application folder):
bundle exec rainforest_test test_case.rb
By default, we have configured Capybara to timeout after 20 seconds. This can be a little long and annoying while developing. This value is configurable through an environment variable.
CAPYBARA_WAIT_TIME=1 bundle exec rainforest_test test_case.rb
If you find a bug with this, please email [email protected]