Add new filter
Posted: Thu Aug 21, 2008 1:22 pm
Hi Community.
i'm really a new TL user and maybe this is a beginner question, but i can't find a solution by using the forum search.
At test execuition i want to set a filter to testcases which are marked as automated tets. Therefore i edit the file ".../testlink/gui/templates/execute/execNavigator.tpl" and add the following code to the table:
After adding this code i can see a new combo box in the filter list (title is "Execution Type") which contains no entries (i expect entries like "manual" and "automated").
Maybe this approach is wrong, so does anybody can help me?
thanks in advance
i'm really a new TL user and maybe this is a beginner question, but i can't find a solution by using the forum search.
At test execuition i want to set a filter to testcases which are marked as automated tets. Therefore i edit the file ".../testlink/gui/templates/execute/execNavigator.tpl" and add the following code to the table:
Code: Select all
...
<tr>
<td>Execution Type</td>
<td>{if $gui->disable_filter_execution_type}
{$gui->execution_type}
{else}
<select name="filter_execution_type">
{html_options options=$gui->execution_type selected=$gui->filter_execution_type}
</select>
{/if}
</td>
</tr>
...
Maybe this approach is wrong, so does anybody can help me?
thanks in advance