If statement does not continue - if false

You need to set FailureHandling.OPTIONAL so the test continues execution and if every other step passes, the test status will be “passed”.

Otherwise, if FailureHandling is CONTINUE_ON_FAILURE the test will continue but it will be marked as “failed”.

2 Likes