Showing posts with label python. Show all posts
Showing posts with label python. Show all posts

Thursday, September 11, 2025

How to install Robot Framework on your Windows OS?

Robot Framework is an open-source automation framework mainly used for:

  1. Test automation (acceptance testing, regression testing, system testing)
  2. 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

### 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
### Then activate the virtual environment
            .\robotenv\Scripts\activate
### Install Robot Framework
            pip install robotframework

### Check the version of Robot Framework
           robot --version

If you can see the robot framework version then it installed successfully.

How to install Robot Framework on your Windows OS?

Robot Framework is an   open-source automation framework   mainly used for: Test automation  (acceptance testing, regression testing, system...