Hi,
I would like to combine below into one like of code for links:-
Condition 1: Issue type is Bug
Condition 2: Status of Bug issues is NOT Closed
#{if (%{(‘${Links[n].IssueTypeName}’.equals(‘Bug’))})}
#{if (%{(‘${Links[n].Status}’.equals(‘Closed’))})}
something like this:
{if (%{‘${Links[n].IssueTypeName}’.equals(‘Bug’) && ‘${Links[n].Status}’.equals(‘Closed’)})}
You can use
AND = &&
OR = ||
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.