I want to import the overall results in TestLink (Test cases results with steps results)
From the Test execution window, it is possible to export the test execution of my test plan by selecting the option "Export for results import".
Then I customize the file created by providing my notes, status, tester name, timestamp and notes and results for all the steps too.
Then I re-import the file by selecting the option "Import Results (XML)".
I get the message that all my test cases results were imported successfully.
When checking in TestLink I notice that everything is ok for the test cases but there is nothing updated for the steps. I don't see my notes and status.
Is this capability enable in TestLink?
If yes, Is there something wrong in my file (bad format) that prevents TestLink to add the test cases steps results?
Here is the code for the first test case:
Code: Select all
<results>
<testproject name="My Test Project" prefix="TC" />
<testplan name="TestPlan1" />
<build name="Release2" />
<platform name="Test environment 3" />
<testcase external_id="TC-1">
<result>F</result>
<notes>This test case TC-1 is failed </notes>
<tester>admin</tester>
<!-- if not present now() will be used -->
<timestamp>2014-01-26 17:30:12</timestamp>
<steps>
<step>
<step_number><![CDATA[1]]></step_number>
<result>p</result>
<notes>1st step is ok</notes>
<execution_type><![CDATA[1]]></execution_type>
</step>
<step>
<step_number><![CDATA[2]]></step_number>
<result>p</result>
<notes>2nd step is ok</notes>
<execution_type><![CDATA[1]]></execution_type>
</step>
<step>
<step_number><![CDATA[3]]></step_number>
<result>f</result>
<notes>3rd step is not ok</notes>
<execution_type><![CDATA[1]]></execution_type>
</step>
<step>
<step_number><![CDATA[4]]></step_number>
<result>f</result>
<notes>4th step is not run</notes>
<execution_type><![CDATA[1]]></execution_type>
</step>
</steps>
</testcase>
</results>
We are using TestLink 1.9.13
Thanks,