I would like to add additional properties to item inside an activity. Can this be achieved in Ranorex.
Ex : The below is the default item Template generated by Ranorex,
Code: Select all
<item timeRelativeToTestSuiteStartTime="00:17.553"
timeRelativeToTestModuleStartTime="00:03.118"
timeWallClock="11:35:42"
time="00:17.553"
level="TestMethod"
category="User">
<message>
Test Method Name
</message>
<metainfo
codefile="d:\olympus\automation\Admin.MasterItemList\HelperClass\MasterItemListCommon.cs"
codeline="54"
loglvl="TestMethod">
</metainfo>
</item>
Code: Select all
<item
timeRelativeToTestSuiteStartTime="00:17.553"
timeRelativeToTestModuleStartTime="00:03.118"
timeWallClock="11:35:42"
time="00:17.553"
level="TestMethod"
category="User"
[b]Message3="Test Method for Message 2"[/b]>
<message>
Test Method Name
</message>
[b]<message2>
Test Method for Message 2
</message2>[/b]
<metainfo
codefile="d:\olympus\automation\Admin.MasterItemList\HelperClass\MasterItemListCommon.cs"
codeline="54"
loglvl="TestMethod">
</metainfo>
</item>