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
mix deps.get
Be sure to have Elixir 1.4 or higher.
Assuming you have Selenium server with the Chrome driver running on port 4444
:
WEBDRIVER=selenium ENV=local mix test
The script relies on the environmental varialbes USER
and KEY
, 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:
source .env
Once these variables are set, you can run the Browserstack remote tests with:
WEBDRIVER=selenium ENV=remote mix test