How to save logs in robot framework like log.html ,report.html,output.xml with some particular name for ex...





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







-1















I am trying to save the logs with the particular name in robot framework but not able to do that . Do we have a way to save the log name with the name as we want? If yes then how to do that ?










share|improve this question




















  • 3





    Robot framework user's guide

    – Bryan Oakley
    Jan 3 at 15:33




















-1















I am trying to save the logs with the particular name in robot framework but not able to do that . Do we have a way to save the log name with the name as we want? If yes then how to do that ?










share|improve this question




















  • 3





    Robot framework user's guide

    – Bryan Oakley
    Jan 3 at 15:33
















-1












-1








-1








I am trying to save the logs with the particular name in robot framework but not able to do that . Do we have a way to save the log name with the name as we want? If yes then how to do that ?










share|improve this question
















I am trying to save the logs with the particular name in robot framework but not able to do that . Do we have a way to save the log name with the name as we want? If yes then how to do that ?







robotframework






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 4 at 12:47









Bence Kaulics

3,23272243




3,23272243










asked Jan 3 at 9:09









Chirag DhingraChirag Dhingra

497




497








  • 3





    Robot framework user's guide

    – Bryan Oakley
    Jan 3 at 15:33
















  • 3





    Robot framework user's guide

    – Bryan Oakley
    Jan 3 at 15:33










3




3





Robot framework user's guide

– Bryan Oakley
Jan 3 at 15:33







Robot framework user's guide

– Bryan Oakley
Jan 3 at 15:33














1 Answer
1






active

oldest

votes


















2














You have the following options to configure your output files:




-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.



So to change the name of the log file launch your tests like this:



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


You can check all command line options in Robot Framework User Guide to learn more.



With -T, --timestampoutputs you can add a timestamp to the name of the output files as well. An example name with --log and --timestampoutputs: my_log_file_name-20190103-102712.html.






share|improve this answer


























  • Thanks @Benuce Kaulics . It really helped

    – Chirag Dhingra
    Jan 4 at 6:08












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54019184%2fhow-to-save-logs-in-robot-framework-like-log-html-report-html-output-xml-with-s%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









2














You have the following options to configure your output files:




-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.



So to change the name of the log file launch your tests like this:



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


You can check all command line options in Robot Framework User Guide to learn more.



With -T, --timestampoutputs you can add a timestamp to the name of the output files as well. An example name with --log and --timestampoutputs: my_log_file_name-20190103-102712.html.






share|improve this answer


























  • Thanks @Benuce Kaulics . It really helped

    – Chirag Dhingra
    Jan 4 at 6:08
















2














You have the following options to configure your output files:




-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.



So to change the name of the log file launch your tests like this:



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


You can check all command line options in Robot Framework User Guide to learn more.



With -T, --timestampoutputs you can add a timestamp to the name of the output files as well. An example name with --log and --timestampoutputs: my_log_file_name-20190103-102712.html.






share|improve this answer


























  • Thanks @Benuce Kaulics . It really helped

    – Chirag Dhingra
    Jan 4 at 6:08














2












2








2







You have the following options to configure your output files:




-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.



So to change the name of the log file launch your tests like this:



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


You can check all command line options in Robot Framework User Guide to learn more.



With -T, --timestampoutputs you can add a timestamp to the name of the output files as well. An example name with --log and --timestampoutputs: my_log_file_name-20190103-102712.html.






share|improve this answer















You have the following options to configure your output files:




-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.



So to change the name of the log file launch your tests like this:



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


You can check all command line options in Robot Framework User Guide to learn more.



With -T, --timestampoutputs you can add a timestamp to the name of the output files as well. An example name with --log and --timestampoutputs: my_log_file_name-20190103-102712.html.







share|improve this answer














share|improve this answer



share|improve this answer








edited Jan 3 at 9:28

























answered Jan 3 at 9:21









Bence KaulicsBence Kaulics

3,23272243




3,23272243













  • Thanks @Benuce Kaulics . It really helped

    – Chirag Dhingra
    Jan 4 at 6:08



















  • Thanks @Benuce Kaulics . It really helped

    – Chirag Dhingra
    Jan 4 at 6:08

















Thanks @Benuce Kaulics . It really helped

– Chirag Dhingra
Jan 4 at 6:08





Thanks @Benuce Kaulics . It really helped

– Chirag Dhingra
Jan 4 at 6:08




















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54019184%2fhow-to-save-logs-in-robot-framework-like-log-html-report-html-output-xml-with-s%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

Does disintegrating a polymorphed enemy still kill it after the 2018 errata?

A Topological Invariant for $pi_3(U(n))$