安装robotframework-sshlibrary库
- VCForPython27
下载地址:https://www.microsoft.com/en-us/download/details.aspx?id=44266
下载文件:VCForPython27.msi
- paramiko
提供ssh及sft远程登录服务器执行命令和上传下载文件的功能
详见:http://www.paramiko.org/installing.html
$ pip install paramiko
- robotframework-sshlibrary
详见:https://pypi.python.org/pypi/robotframework-sshlibrary
$ pip install robotframework-sshlibrary
Robot测试脚本
*** Settings ***
Library SSHLibrary
*** Test Cases ***
SSH连接及操作
SSHLibrary.Open Connection 121.40.169.150
SSHLibrary.Login yezhou ******
#修改配置文件
${files} SSHLibrary.Execute Command ls
SSHLibrary.close Connection
log ${files}




