Python3+Robot Framework环境搭建

文章目录

  • 1、Python环境的安装
  • 2、Robot framework的安装
  • 3、wxPython 的安装
  • 4、安装RIDE
  • 4、已安装的库文件如下
  • 5、运行RIDE
  • 6、创建快捷方式


1、Python环境的安装

Python下载地址:https://www.python.org/

2、Robot framework的安装

pip install robotframework

3、wxPython 的安装

wxPython是一个Python包装wxWidgets(这是用 C++ 编写),一个流行的跨平台GUI工具包。由Robin Dunn以及Harri Pasanen开发,wxPython是作为一个Python扩展模块。

pip install wxPython

4、安装RIDE

pip install robotframework-ride

安装成功以后,python,Scripts目录下会有ride.py文件
Python3+Robot Framework环境搭建_第1张图片

4、已安装的库文件如下

Python3+Robot Framework环境搭建_第2张图片

5、运行RIDE

Python3+Robot Framework环境搭建_第3张图片
RIDE启动成功界面如下:
Python3+Robot Framework环境搭建_第4张图片

6、创建快捷方式

  • 复制一个快捷方式
目标			"D:\Program Files\Python3.7.1_x64\python.exe" -m robotide.__init__
起始位置		"D:\Program Files\Python3.7.1_x64\Scripts"
更改图标  	D:\Program Files\Python3.7.1_x64\Lib\site-packages\robotide\widgets\robot.ico

Python3+Robot Framework环境搭建_第5张图片

你可能感兴趣的:(Robot,Framework)