To address this, one may add a scripted assertion to the VS Image Response Selection step, as the last assertion. The purpose of this assertion is to detect whether the select response is the meta response or a specific response.
This assertion should be configured to call the Live Invocation step when returning true.
The script used is
import com.itko.lisa.vse.ExecutionMode;
if (testExec.getStateObject("lisa.vse.execution.mode").equals(ExecutionMode.STAND_IN)) {
if (testExec.getStateObject("lisa.vse.matched.transaction") instanceof com.itko.lisa.vse.stateful.model.TransactionNode) {
return true;
}
}
return false;