Hello all,
I am performing some transformation in my scenario and saving it as dataString like this -
.check(bodyString.transform(str => str.replace("\", “”)).transform(str => str.replace(""{", “{”)).transform(str => str.replace("}"", “}”)).saveAs(“dataString”))
Is there a way to perform jmesPath/jsonPath on the dataString?
dataString is a JSON and I want to get the value of the name and verify using jmesPath something like “${dataString”}.data.id
Please help.