To view this discussion on the web visit https://groups.google.com/d/msgid/ninja-framework/CACRkZ6LqD3BZ3UwpqwKNFKm5tVGZOVn6HByZGzF3325cSrDsRg%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ninja-framework/CACRkZ6JMMQMZbBK_OexxESr55QwEDOcNWZfDi277yMEPxNm8vw%40mail.gmail.com.
true true .content was just a field of my test object.
But does the following work for you?
<#list map?keys as key>
${key} ${map?values[key_index]} <br/>
</#list>
The important part is ${map?values[key_index]} - this should allow you to access the value via the key in your map...
Cheers,
Raphael
To view this discussion on the web visit https://groups.google.com/d/msgid/ninja-framework/CAKJWkkHXBzh8Gniu6Soj9jEH3jW%2BLNKwFAx64VCvyCVJ9Y%2BJxg%40mail.gmail.com.
<#list map?keys as key>
${key} ${map?values[key_index]} <br/>
</#list>