Hello,
I am trying to do some post processing of the rxlog file that is generated after a test run. I tried running the sample VIPTestSuite project and basically I see that the structure of the xml report is
<activity>
<activity testsuitename='suite1'>
<activity testcasename='test01'>
<activity testcasename='test01' iternation='1'/>
<activity testcasename='test01' iternation='n'/>
</activity>
<activity testcasename='test n'>
<activity testcasename='test01' iternation='1'/>
<activity testcasename='test01' iternation='n'/>
</activity>
</activity>
<activity testsuitename='suite n'>
<activity testcasename='test01'>
<activity testcasename='test01' iternation='1'/>
<activity testcasename='test01' iternation='n'/>
</activity>
<activity testcasename='test n'>
<activity testcasename='test01' iternation='1'/>
<activity testcasename='test01' iternation='n'/>
</activity>
</activity>
</activity>
Is it safe to say that that this same format is followed for all report that might come out of ranorex ?
Thanks