-
Notifications
You must be signed in to change notification settings - Fork 102
Home
Somkiat Puisungnoen edited this page Aug 13, 2021
·
8 revisions
- Python 3
- Robot Framework
- Text Editors
- Google Chrome Driver
- Git client
- Jenkins LTS (WAR file)
- Selenium Grid
- Postman
Step 1 :: Install Python Check in command line (cmd/terminal)
$python -V
Python 3.x.x
Step 2 :: Install pip or Package Installer for Python Check in command line (cmd/terminal)
$easy_install pip
$pip -V
pip 2x.x.x
command not found or pip/python not recognized
Solution :: set in environment variable
For Windows
$set PYTHON_HOME=<absolute path of your python installed path/directory>
$set PATH=.;%PYTHON_HOME%;%PYTHON_HOME%\scripts;%PATH%
For Mac and Linux
$export PYTHON_HOME=<absolute path of your python installed path/directory>
$export PATH=.:$PYTHON_HOME:$PYTHON_HOME\scripts:$PATH
step 3 :: Install Robotframework
$pip install robotframework
$robot
[ ERROR ] Expected at least 1 argument, got 0.
Try --help for usage information.
step 4 :: Install Robotframework libraries
$pip install robotframework-seleniumlibrary
Let's Go !!