I don´t know what can I do in order to be able to import 2 or more notes per test case when importing results, so that they would be shown in to differents rows in the test report.
I have tried to import this xml:
<results>
<testcase id="26"> <!-- ID: internal/DB id -->
<result>p</result>
<notes>functionality works great</notes>
<notes>this case failed due to error</notes>
<notes>this case failed due to error</notes>
</testcase>
<testcase id="29">
<result>p</result>
<notes>this case failed due to error</notes>
</testcase>
<testcase id="33">
<result>b</result>
<notes>this test case is blocked1</notes>
</testcase>
</results>
Testlink allows me to import this xml file whit 2 or more notes per test case, but then only shows the first note in the test report of the reports an metric menu, it ignores the others.
I´ll be very gratefull if anyone help me with this!!!
<results>
<testcase id="26"> <!-- ID: internal/DB id -->
<result>p</result>
<notes>functionality works great<br />
this case failed due to error<br />
this case failed due to error</notes>
</testcase>
<testcase id="29">
<result>p</result>
<notes>this case failed due to error</notes>
</testcase>
<testcase id="33">
<result>b</result>
<notes>this test case is blocked1</notes>
</testcase>
</results>
<results>
−
<testcase id="26">
<!-- ID: internal/DB id -->
<result>p</result>
−
<notes>
functionality works great
<br/>
this case failed due to error
<br/>
this case failed due to error
</notes>
</testcase>
−
<testcase id="29">
<result>p</result>
<notes>this case failed due to error</notes>
</testcase>
−
<testcase id="33">
<result>b</result>
<notes>this test case is blocked1</notes>
</testcase>
</results>