Hi,
On login to my web app, I got bodyString as a json, how can I check it’s values ?
body=
{"Message":"Success","Api_key":"xxxxxxx","Pcode":"xxxxxxx"}
I tried
.exec(http("authorization")
.post("/auth")
.headers(headers_10)
.queryParam("""email""", "${email}")
.queryParam("""password""", "${password}")
.check(status.is(200))
.check(jsonPath("$.Message").is("Success")))
.pause(1)
it through java.lang.NumberFormatException: For input string: "20-ea" error