script assertion
i need to validate many assertions in same script assertion. But when any one of assert fails, runner stops there itself and control passed to next step. Below is my case assert (1 ==1) log.info "1" assert (1 == 2) log.info "2" assert (1 ==3) log.info "3" When i execute the above, 2nd assertion fails and third assertion did not executed at all. Is there is any way to validate all assertions.1.4KViews0likes2Comments