Example of how to use Elixir and Hound to run browser automation tests.
These tests are in run in parallel and can be run locally or remotely connecting to Browserstack.
Install dependencies first using
Be sure to have Elixir 1.4 or higher.
Assuming you have Selenium server with the Chrome driver running on port4444
:
WEBDRIVER=selenium ENV=local mixtest
The script relies on the environmental varialbesUSER
andKEY
, which represent your Browserstack username and access key.
You can set these variables in an.env
file like
export USER="example"export KEY="example"export HOST="http://${USER}:${KEY}@hub-cloud.browserstack.com"
and then run:
Once these variables are set, you can run the Browserstack remote tests with:
WEBDRIVER=selenium ENV=remote mixtest