- Git
- Python 3.6+
- Robot
- pip
- chromedriver
- Selenium Library
If you don't have homebrew installed go to Homebrew installation
Before starting the installlation process, check what is already installed with the following comands:
git versionpython --versionin case you have more than one python version installed usepython3 --versionrobot --versionpip --versionin case you have more than one pip version installed usepip3 -- versionchromedriver --version
- Open your Terminal app (Quit it first if already open)
- Run the following command
brew install git - Verify your installation with
git version
- Open your Terminal app (Quit it first if already open)
- Run the following command
brew install python3 - Verify your python installation with
python --versionif you have more than one python version installed usepython3 --version - Verify pip was installed with
pip --versionif you have more than one pip version installed usepip3 -- version
If you have more than 1 pip versione installed do all the following comands with pip3 instead if pip
- Open your Terminal app (Quit it first if already open)
- Run the following command
pip install robotframework - Verify robot was installed running the following command
robot --version
If you have more than 1 pip versione installed do all the following comands with pip3 instead if pip
- Open your Terminal app (Quit it first if already open)
- Run the following command
pip install --upgrade robotframework-seleniumlibrary - Verify selenium library was installed running the folloeing command
pip show robotframework-seleniumlibrary
If you have more than 1 pip versione installed do all the following comands with pip3 instead if pip
- Open your Terminal app (Quit it first if already open)
- Run the following command
pip install webdrivermanager - Run the following command
webdrivermanager firefox chrome --linkpath /usr/local/bin - Verify the driver(s) was/were installed with the following comand Chrome:
chromedriver --versionFirefox:geckodriver --version
- Open your Terminal app (Quit it first if already open)
- Run the following comand
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" - Follow the steps that are shown in the Terminal window
- Verify your installation with
brew --version