Hi
I want a custom report that only list all my bad test. One items a a line.
But how to do this?
Create custom report.
-
- Posts: 2832
- Joined: Tue May 16, 2006 4:41 am
- Contact:
You should create new Custom report, open HTML Report Template window, click on "Test items" tab and clear up all positions (with "Good" statuses, Unknown (new), etc.). Into "Bad items (new)" area you may paste necessary variables, e.g:
Of course, you may use more advanced HTML with <TR> <TD> tags.
If you do not need folder information, you also should clear up "Folder title" tab.
Regards,
Max
Code: Select all
%TestName% %Status% %Recurrences% %Reply%<br>
If you do not need folder information, you also should clear up "Folder title" tab.
Regards,
Max
-
- Posts: 2832
- Joined: Tue May 16, 2006 4:41 am
- Contact:
Something like this:
or this:
Look, "Custom HTML report" provides you powerfull engine to create different reports. You just should understand how it works. When you take a look at "HTML Report Template" window, you could mention, that all tabs represents particular part of web page. "Header" and "Footer" tabs depict top and bottom of the HTML page, "Folder Title" tab represent folder level info, "Test items" tab represent items level. You just have to try an you will understand how it works.
Regards,
Max
Code: Select all
<TR><TD bgcolor=Red>%TestName% %Status% %Recurrences% %Reply%</TD></TR>
Code: Select all
<TR>
<TD>%TestName%</TD><TD bgcolor=Red>%Status%</TD><TD>%Recurrences%</TD><TD>%Reply%</TD>
</TR>
Regards,
Max