I have 17 unique cases for Flow switch

I can only use 11 cases, but I need 17 unique cases, what can I use instead?

1 Like

Fine
if the condition matches with any of those 11 cases its fine
or it will go for DEFAULT Right where we can use SEQUENCE with SWITCH activity in it
taking the input value from default case and then processing with remaining cases we have within that SWITCH activity

Cheers @danielvianna

1 Like

So Use If Else before, then connect 2 flowcharts?
Is there another element that I can use to replace the flowchart? something that accepts 17 conditions?
I’m basically doing this: when it’s testcase 1, run test testcase1 script on command line, when it’s testcase 2, run testcase2 script on command line. I might have more than 17 in the future

Yah of course
We got SWITCH activity with SEQUENCE That can take 17 cases at a time
Even if we want to add any more cases we can easily do that in that activity

Cheers @danielvianna

1 Like

Gotcha!
Thank you

Cheers @danielvianna

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.