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;
}
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
add a comment |
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
3
Robot framework user's guide
– Bryan Oakley
Jan 3 at 15:33
add a comment |
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
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
robotframework
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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
.
Thanks @Benuce Kaulics . It really helped
– Chirag Dhingra
Jan 4 at 6:08
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
.
Thanks @Benuce Kaulics . It really helped
– Chirag Dhingra
Jan 4 at 6:08
add a comment |
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
.
Thanks @Benuce Kaulics . It really helped
– Chirag Dhingra
Jan 4 at 6:08
add a comment |
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
.
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
.
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
3
Robot framework user's guide
– Bryan Oakley
Jan 3 at 15:33