Manual Tests - skipping later steps when marking step as Failed

When executing Manual test cases, there does not seem to be a way of skipping/ignoring later steps in the process if a step has been marked as ‘Failed’.

In several testing scenarios, it does not make sense to continue the processing of subsequent steps if one of them has failed.

There is the option ‘Set Passed to here’ to flag remaining steps, but this feels rather ‘kludgy’ to me.

How have others approached this kind of scenario?

Thanks

use Terminate workflow activity
example:
If Condition
Then
Terminate Workflow (Reason: “Condition met”, Options: Cancel, ContinueOnError: False)
Else
Continue with other activities

Thanks for the suggestion, but this would apply to an Automated Test Case scenario.

I’m looking for an option for Manual Test Case scenarios where automation workflow activities are not available.