- 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 testcases
to execute all test cases in the foldertestcases
.
git clone https://github.com/zkan/hello-robotframework.git
cd hello-robotframework
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
export PATH=$PATH:$(pwd)/webdrivers/linux
robot testcases/google.robot
WebDriver is a tool for test automation for Web application.