Robot Framework Beginner Tutorial 1 – Getting started with Robot Framework step by step

Robot Framework Beginner Tutorial 1 – Getting started with Robot Framework step by step

HomeAutomation Step by StepRobot Framework Beginner Tutorial 1 – Getting started with Robot Framework step by step
Robot Framework Beginner Tutorial 1 – Getting started with Robot Framework step by step
ChannelPublish DateThumbnail & View CountDownload Video
Channel AvatarPublish Date not found Thumbnail
0 Views
FREE tutorials – https://automationstepbystep.com/
References:
Python – https://www.python.org/downloads/
wxPython – https://sourceforge.net/projects/wxpython/files/wxPython/2.8.12.1/
Please note: RIDE may not work with Python 3
Today we will learn:

1. How to setup Robot Framework from scratch
2. Remove Robot Framework
3. Useful tips

Set robot framework
—————————————-

Step 1: Check in advance
Check if Python is already installed
python –version
pip version
Check if the robot framework is already installed
robot version

Step 2: Install Python
check for cmd: python –version
pip version

Step 3: Set Python in environment variables
C://Python27;C://Python27//Scripts;
Account:
python –version
pip version

Step 4: Install the robot framework
pip install robot framework
delete: pip delete robotframework

Step 5: Check for cmd:
robot version
pybot –version

Step 6: Download and install wxPython
https://sourceforge.net/projects/wxpython/files/wxPython/2.8.12.1/
check with: pip freeze
wxpython should be available

Step 7: Install RIDE
pip install robotframework-ride
https://github.com/robotframework/RIDE/wiki/Installation-Instructions

For Mac OS, try these commands:
pip install -U -r https://raw.githubusercontent.com/robotframework/RIDE/master/requirements.txt
pip install -U robotframework-ride1.7.4b1

Step 8: On cmd go to the folder where ride.py is (C://Python27//Scripts)
run on cmd: ride.py
This should open RIDE

How to remove Robot Framework
—————————————— —–

pip remove robotframework-ride
pip removes robot framework

Helpful tips:
1. Always install wxPython before installing RIDE.
wxPython is a wrapper for getting RIDE's GUI.
So it is important to install wxPython before installing RIDE

2. Always check your Python version and install wxPython for the same version
***32 bit – check your python ver by running command python and installing same bit wxpython

3. The pip cache folder is located at – C://Users//Raghav Pal//AppData//Local//pip//cache
If you uninstall and reinstall a lib, it will use the zip from the cache.
fresh to install
– you can empty the contents of the cache folder
– pip install –no-cache-dir robotframework-ride

4. Versions before Robot Framework 3.0 did not have the robot script. Instead, they had pybot, jybot, and ipybot scripts that ran tests using Python, Jython, and IronPython, respectively. These scripts are still installed, but the plan is to terminate and remove them in the future.

5. Robot Framework User Guide –
http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html
https://github.com/robotframework/QuickStartGuide/blob/master/QuickStart.rst

Keyboard shortcuts –
https://github.com/robotframework/RIDE/wiki/Keyboard-Shortcuts

RF GitHub page –
https://github.com/robotframework

__________________________________________________________________

Please take the opportunity to connect and share this video with your friends and family if you find it helpful.