Ask a Question

How to assert for a "not null" response in the json response from soap api?

SOLVED
joanna
New Contributor

How to assert for a "not null" response in the json response from soap api?

How to assert for a "not null" response in the json response from soap api using groovy scripting

2 REPLIES 2
groovyguy
Champion Level 0

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 != []);



---

Click the Accept as Solution button if my answer has helped, and remember to give kudos where appropriate too!
HimanshuTayal
Community 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"

 

 

 


Click "Accept as Solution" if my answer has helped,
Remember to give "Kudos" 🙂 ↓↓↓↓↓



Thanks and Regards,
Himanshu Tayal
cancel
Showing results for 
Search instead for 
Did you mean: