I would like to create some space between my test cases when I print a test plan to word. What needs to be modified to make this happen?
Thanks
Printing to Word
Adding spaces between test cases in word documents
I changed line 247 of the print.inc.php file
from:
$code .= "</table></div>";
to:
$code .= "</table></div><br />";
this adds an extra line after each test case is printed and it also fixes the tc table mis-alignment problem displayed when printing to ms-word documents.
I still need to figure out how to fix the toc not honoring the testsuite/testcases hirearchy structure when displayed in ms-word documents
from:
$code .= "</table></div>";
to:
$code .= "</table></div><br />";
this adds an extra line after each test case is printed and it also fixes the tc table mis-alignment problem displayed when printing to ms-word documents.
I still need to figure out how to fix the toc not honoring the testsuite/testcases hirearchy structure when displayed in ms-word documents

I've just found a workaround for printing the correct hirearchical structure of the "Table of Contents" in ms-word documents.
I've changed 'padding-left' to 'margin-left' on both renderTestSuiteNodeForPrinting (line 214) and renderTestCaseForPrinting functions (line 289) of the print.inc.php file
These changes didn't seem to break the "print to HTML" functionality.
I've changed 'padding-left' to 'margin-left' on both renderTestSuiteNodeForPrinting (line 214) and renderTestCaseForPrinting functions (line 289) of the print.inc.php file
These changes didn't seem to break the "print to HTML" functionality.