I am trying to extract the Test Run Activity entries but the recommended code is not working. If anyone has tried this out and has been successful, please let me know. The code that I tried is in the following link.
#{
for
testruns}
#{
for
d=TestRuns[n].ActivityEntriesCount}
Action: ${TestRuns[n].ActivityEntries[d].Action}
Author: ${TestRuns[n].ActivityEntries[d].Author}
Created at: ${dateformat(
"dd-MM-yyyy HH:mm:ss"
):TestRuns[n].ActivityEntries[d].Created}
Changes:
#{
for
ch=TestRuns[n].ActivityEntries[d].ActivityItemsCount}
Field: ${TestRuns[n].ActivityEntries[d].ActivityItems[ch].Field}
OldValue: ${TestRuns[n].ActivityEntries[d].ChangedItems[ch].OldValue}
NewValue: ${TestRuns[n].ActivityEntries[d].ChangedItems[ch].NewValue}
#{end}
#{end}
#{end}