在Assertion中获取Response的headers,获取headers中信息,获取body(content)

// get the  headers of the request
def content= messageExchange.getResponseContent()
def headers = messageExchange.getResponseHeaders()
log.info headers


//get the Content-Type of the headers
def contentType= headers["Content-Type"][0]
log.info contentType

log.info content.contains("<error")

原文地址:https://www.cnblogs.com/kill0001000/p/5381803.html