Robot Framework (Chinese station/social knowledge Community, source code) is a Python-written common open-source functional test automation framework for acceptance testing and acceptance test-driven development (ATDD), which is a keyword-driven test framework that uses tabular test data syntax, It can also run on Jython (JVM) and IronPython (. NET). Its first edition, developed by Nokia Siemens Networks in 2005, released its first open source version of 2.0 on June 24, 2008.
Install preset conditions to install Python
Currently the latest version is 2.9 Python 2.6 and 2.7, so Windows first downloads python 2.7.10 from the Python website and then installs Python by default when you select all users and cannot set environment variable Pythoncaseok.
Configuring Environment variables
Windows environment variable path plus "; C:\Python27; C:\Python27\Scripts".
Installing the Robot Framework
Networking uses Python Package manager pip to install Robotframework, and if you are using a proxy, you need to configure the environment variable https_proxy, as its value is http://10.0.0.42:8080.
# Install the latest version
Pip Install Robotframework
# Install the latest version even if it is pre-released
Pip Install--pre robotframework
# Upgrade to the latest version
Pip Install--upgrade robotframework
# Installation of the developed version
Pip Install robotframework==2.8.5
# Uninstall
Pip Uninstall Robotframework
After successful installation, enter Pybot--version with the command line to display the robot framework and the interpreter version number.
Installing Ride
Ride is a test data editor for Python writing robot framework test case data. Its interface is based on wxpython,windows download 2.8.12.1 Unicode version After the installation is complete, the network is installed directly with PIP:
Pip Install Robotframework-ride
Once the display is successful, the ride interface will appear with the Run/command line input ride.py .
Robot Framework Installation