简介
见官方文档
使用
- 在远程服务器上安装robotremoteserver
pip install robotremoteserver
- 编写远程服务脚本:remote.py123from robotremoteserver import RobotRemoteServerfrom EhomepayLibrary import EhomepayLibraryRobotRemoteServer(EhomepayLibrary(), host='10.35.14.47')
- 启动服务脚本
python remote.py
- 在本地case中引用远程库1234567*** Settings ***Force Tags demoLibrary CollectionsLibrary DatabaseLibraryRemote http://10.35.14.47:8270*** Test Cases ***...