Solved
Forum Discussion
nmrao
7 years agoCommunity Hero
Assertion message will be part of the report, not the log.info
- vijayk17 years agoOccasional Contributor
- nmrao7 years agoCommunity HeroGlad to know that it helped.
- prajakta6 years agoOccasional Contributor
Can you please elaborate how to send ?
- vijayk16 years agoOccasional Contributor
response= testRunner.testCase.getTestStepByName("TestStep name").getPropertyValue("Response")
parsedResponse = new JsonSlurper().parseText(response)
def X=parsedResponse.TESTValue // value you need to assert or check
assert (X == '1234' ) : response // this will post complete response in reportHope this help.