Hey there,
I have this code:
<flow>
<thread>
<repuntil desc="Desc" title="Title">
<do>
<receive id="shareInstructions"
desc="Fetch instructions through the API"
handler="HttpMessagingV2"
to="TestBed"
from="ITBUser">
<input name="method">"GET"</input>
<input name="body">$instructionsAsAnAPIBody</input>
<input name="headers">$APIExecutionTestsHeaders</input>
<input name="uriExtension" asTemplate="true">"/instructions/${SESSION{sessionId}}"</input>
</receive>
</do>
<cond>$interaction1IsDone</cond>
</repuntil>
</thread>
When the testcase has been started, it renders like this in the UI:
Why is it striked through? It still works, the GET input is set up and awaits to be called. After I've called the GET endpoint, it looks like I expect:

Hey there,
I have this code:
When the testcase has been started, it renders like this in the UI:
Why is it striked through? It still works, the GET input is set up and awaits to be called. After I've called the GET endpoint, it looks like I expect: