Skip to content
Gallery
Software Quality Assurance Engineer
Share
Explore
Robot Framework

icon picker
Set Up

Install Git: > choose the 64-bit installer
Install Node.js:
Install Python:
During the installation, make sure to tick the “Add to PATH” checkbox at the first page. (MUST) ​
image.png

After installing, open a terminal.
Input:
python --version (To check the installed-python version)
pip --version (To check the python packages installer version)
image.png
Install Robot Framework on your terminal:
pip install robotframework
robot --version (To check robotframework version
image.png
Install Robot Framework: Playwright library
pip install robotframework-browser
rfbrowser init
rfbrowser version (To check robotframework-browser version)
image.png
Install the other python packages that we’ll be using on our code and test runs:
pip install robotframework-pabot - to execute parallel testing.
pip install robotframework-requests - to perform API testing on RF tests.
pip install robotframework-faker - generates fake data for names, locations, numbers and etc...
pip install clipboard
- to be able to copy/paste a data during tests.

Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.