Hi,
With Beta2, when I go on Result page and I click on "Test Plan", I see all checkbox for print selection but I can't find the way to have the TestPlan printed (HTML or WORD).
In Beta1, under the checkbox section, they have a tree for the printing purpose.
Could you give me the way to print (HTML/WORD) TestPlan with Beta2 please?
Unable to print TestPlan with TL Beta2
Moderators: Amaradana, TurboPT, TL Developers
Hi, I dont know if I'm the only one with this problem but if not, I find a way (temporary patch) to make it work with Beta2
On file: printDocOptions.php Version1.6
I've remplaced the line 126: $tree = invokeMenu($treeString,null,null);
by the following lines:
if ($type == 'testplan')
{
$tree = invokeMenu($treeString->menustring,null,null);
}
else
{
$tree = invokeMenu($treeString,null,null);
}
Nicolas.
On file: printDocOptions.php Version1.6
I've remplaced the line 126: $tree = invokeMenu($treeString,null,null);
by the following lines:
if ($type == 'testplan')
{
$tree = invokeMenu($treeString->menustring,null,null);
}
else
{
$tree = invokeMenu($treeString,null,null);
}
Nicolas.