How to get a value from a util.map field

Hello,

I have a parameter ${Disciplina_map} of type java.util.map, this print a value {Geral=Geral}, i need get only the value "Geral"  and print'it.

How i can get this values? 

 

Thanks!

fabiano.gabardo.lemos's picture
Joined: May 29 2017 - 9:42am
Last seen: 4 years 3 months ago

Answer was here :)

sergey.vishnevetskiy - 5 years 1 month ago

1 Answer:

$P{Disciplina_map}.get("Geral")

Consider using check $P{Disciplina_map}.containsKey("Geral") before, in case it isn't

sergey.vishnevetskiy's picture
Joined: Jan 2 2018 - 10:13am
Last seen: 2 years 10 months ago
Feedback
randomness