问题描述
我已经尽力了,但我无法得到答案,我可以找到 pybot 和机器人命令行之间的区别.
I tried my best but I am not able to get an answer where I can find what are the difference between pybot and robot command line.
这两个不同的选项是否可以实现相同的任务,即执行机器人测试套件/案例?或者有一个特殊的规则说明何时使用 pybot 以及何时使用 robot 命令行来运行机器人测试用例.
Is this two different options to achieve the same task i.e. executing robot test suites/cases? Or there is a special rule that says when to use pybot and when to use robot command line to run a robot test cases.
请帮助我理解这个概念,举个例子会很有帮助.谢谢
Please help me to understand this concept, an example will be very helpful. Thanks
推荐答案
pybot
是运行机器人的旧方式.它是 linux 上的一个简单 shell 脚本,以及 python 上的 .bat 文件.不同的机器人解释器有不同的启动脚本:pybot
(python)、jybot
(jython)、ipybot
(ipython).
pybot
was the old way to run robot. It was a simple shell script on linux, and a .bat file on python. There were different startup scripts for different robot interpreters: pybot
(python), jybot
(jython), ipybot
(ipython).
在 3.0 版中,它根据增强请求 重命名为 robot
2216
In version 3.0 it was renamed to robot
, based on enhancement request 2216
没有理由再使用 pybot
.它已被弃用,并将在未来版本中删除.运行测试的正确方法是使用 robot
.
There is no reason to use pybot
anymore. It is deprecated and will be removed in a future version. The correct way to run tests is with robot
.
这篇关于pybot 和机器人命令行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!