Forum Discussion
- groovyguyCommunity Hero
You can try something like this snippet of code, that asserts that the repsonse is not null, is not an empty collection, and is not an empty string:
def response = context.expand( '${TestStepName#Response}' ) assert (response != null) && (response != "") && (response != []);
- HimanshuTayalCommunity Hero
You can do this in script assertion by writing below code:
def response = messageExchange.getResponseContent()
assert (response != null) && (response != "") && (response != []):"Assertion failed, Got Null Response"
Related Content
- 6 years ago