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