Robot Framework is an open-source automation framework mainly used for:
- Test automation (acceptance testing, regression testing, system testing)
- Robotic Process Automation (RPA)
It’s designed to be keyword-driven, meaning tests are written in a readable, almost natural language style using keywords that represent actions.
Steps to install Robot Framework :
### Open Command Prompt / terminal
- Press Windows + r key
- then type - cmd
- then type - cmd
### Check if you have Python installed or not, if not then install Python first
python --version
### Create a folder and navigate to the created folder
mkdir robot_f cd robot_f
### Now create a virtual environment
python -m venv robotenv
python -m venv robotenv
### Then activate the virtual environment
.\robotenv\Scripts\activate
.\robotenv\Scripts\activate
### Install Robot Framework
pip install robotframework
pip install robotframework
### Check the version of Robot Framework
robot --version
robot --version
If you can see the robot framework version then it installed successfully.
No comments:
Post a Comment