- To create a virtual environment with Python 2.7, run
virtualenv -p python2.7 venv. - Activate the virtual environment by
source venv/bin/activate. - Install the required packages by
pip install -r requirements.txt. - Run
robot testcasesto execute all test cases in the foldertestcases.
git clone https://github.com/zkan/hello-robotframework.gitcd hello-robotframeworkvirtualenv venvsource venv/bin/activatepip install -r requirements.txtexport PATH=$PATH:$(pwd)/webdrivers/linuxrobot testcases/google.robot
WebDriver is a tool for test automation for Web application.