Answers for "method chainning in api"

0

method chainning in api

// given part -- RequestSpecification
     // you can add information like header, query param, path var, body
     // if this request need authentication , it also goes to give section

// when part --- Send Request(GET POST PUT DELETE)
      // --Get response

// then part -- ValidatableResponse
      // this is where assertions start
      // you can chain multiple assertions
      // if any assertions fail , whole test fail.
Posted by: Guest on May-30-2021

Browse Popular Code Answers by Language