Quick Installation Python3 + RobotFrameowork automated testing environment

1. Installation Python3 (installed here Python3.6.5)

安装 robotframework :   pip install robotframework -U

pip install robotframework -U

3. Install WxPython library

pip install wxpython 

4. Installation robotframwork

pip install robotframework

5. Installation RobotFramework common library

pip install robotframework-selenium2library # (非常有用)
pip install robotframework-requests # (可选)
pip install robotframework-SSHLibrary # (可选) 
pip install robotframework-ftplibrary # (可选)
pip install robotframework-appiumlibrary # (可选)

6. If you have to use RF official editor RIDE, we continue to install robotframework-ride

pip install robotframework-ride

8. Start RF official editor RIDE
quickly verify that the installation was successful. Call the main () method to start RIDE GUI graphical interface After starting Python3

C:\Users\23939>python
Python 3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:54:40) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from robotide import main
>>> main()

9.启动工具界面

Guess you like

Origin www.cnblogs.com/fighter007/p/11260610.html