如何将日志保存在诸如log.html,report.html,output.xml之类的机器人框架中,并使用一些特定的名称表示ex log.html-> logxyz.html,abcreport.html?

时间:2019-01-03 09:09:07

标签: robotframework

我正在尝试将具有特定名称的日志保存在机器人框架中,但无法执行该操作。我们是否可以使用所需的名称保存日志名称?如果是,那该怎么办?

1 个答案:

答案 0 :(得分:2)

您可以使用以下选项来配置输出文件:

-d, --outputdir <dir> Defines where to create output files.
-o, --output <file>   Sets the path to the generated output file.
-l, --log <file       Sets the path to the generated log file.
-r, --report <file>   Sets the path to the generated report file.

因此,要更改日志文件的名称,请像这样启动测试:

robot --log logxyz --report abcreport my_robot.robot

您可以查看《机器人框架用户指南》中的所有command line options来了解更多信息。

通过-T--timestampoutputs,您还可以在输出文件的名称中添加时间戳。带有--log--timestampoutputs的示例名称:my_log_file_name-20190103-102712.html