机器人框架输出和结果文件路径&名称配置

robot framework output and result file path & name configuration

我正在使用带有 eclipse 的机器人框架来测试脚本。 每次我 运行 测试它都会覆盖旧的结果和输出文件。在 eclipse 中必须如何以及必须完成什么配置,而不是覆盖输出和结果文件,它总是生成一个新的输出和结果文件?

这可以通过命令行实现,但我想知道如何在 eclipse 中配置它

生成的统计文件的名称由这些命令行选项控制:

  • --output,为详细的xml文件,默认名称为"output.xml",

  • --report,用于摘要html文件,默认名称为"report.html",

  • --log,用于详细的html文件,默认名称为"log.html"。

最重要的是,有一个 option -T or --timestamp,使用时会在文件名中添加时间戳,就在扩展名之前。
有了它,文件将被调用(作为示例)"output-20080604-163225.xml" - 这看起来正是您要查找的内容。

如果您想使用 eclipse 配置它。

  1. 右击red.xml
  2. 点击运行作为配置
  3. 输入 'Additional Robotframework arguments' --timestampoutputs --log mylog.html --report NONE tests.robot

enter image description here