INTRODUCTION:
Robot Framework is an open source test automation framework for acceptance testing and acceptance test-driven development. It follows different test case styles – keyword-driven, behavior-driven and data-driven for writing test cases.
Robot Framework provides good support for external libraries, tools that are open source and can be used for automation. The most popular library used with Robot Framework is Selenium Library used for web development & UI testing.
Robot Framework can be installed on all major operating system platforms. Today we are going to install ROBOT framework on Ubuntu OS.
PREREQUISITE:
1. Ubuntu 18.04.3 LTS
2. Linux 5.3.0-53-generic x86_64
3. Internet connectivity 😉
INSTALLATION:
1. Install Python
$ sudo apt install python2.7
2. Install python pip
$ sudo apt install python-pip
3. Install Robot Framework package using pip:
$ sudo pip install robotframework
Once the installation completes, to verify if the installation went OK, enter the below command:
$ robot --version
Enjoy your ROBOT framework installation is completed successfully 😇
Note: In order to work with Webdriver (Selenium 2) and Robot Framework, you need to install 'Selenium2Library'. You can perform the pip installation as below:
$ sudo pip install robotframework-selenium2library
No comments:
Post a Comment