参考文章:
http://blog.csdn.net/biaoxianwokeng/article/details/53765422
1、python 安装
下载:
https://www.python.org/downloads/release/python-2713/
配置:
http://jingyan.baidu.com/article/48206aeafdcf2a216ad6b316.html
2、robotframework 3.0.2
下载:
https://pypi.python.org/pypi/robotframework
解压进入目录:
D:\zazx\robotframework-3.0.2
执行:
python setup.py install
3、安装wxPython,我安装的是wxPython2.8.12
下载:
Wxpython是python非常有名的一个GUI库,因为RIDE是基于这个库开发的,所以这个必须安装。
https://sourceforge.net/projects/wxpython/files/wxPython/2.8.12.1
执行:
python setup.py install
4、robotframework-Ride
下载:
https://pypi.python.org/pypi/robotframework-ride/1.3
安装:
python setup.py install
下面的包根据实际要测试的内容进行相应的安装
5、DatabaseLibrary
下载:
http://robotframework.org/#libraries
安装:
python setup.py install
6、robotframework-requests
如上
7、PyMySQL 0.7.11
下载:
https://pypi.python.org/pypi/PyMySQL/
安装:
python setup.py install
安装后,编写用例正常,但是在执行测试用例的时候会报:
unexpected error: [ ERROR ] option --monitorcolors not recognized
可参考下方链接:
http://icestick8586.blog.51cto.com/9867871/1880888
这个报错可能是C:/Python27/Lib/site-packages 文件夹中安装的某些扩展库版本和robotframework版本不匹配导致,可以尝试升级robotframework版本,如robotframework跟robotframework-ride之间版本问题
The --monitorcolors option has been replaced with --consolecolors in Robot Framework version 2.9. The usage documentation for --consolecolors is here. You must be using the old option somewhere - check the Arguments string in the Run tab in RIDE.
解决方案: pip install --upgrade robotframework-ride