0
votes

Actually am new to Gatling tool, just i want to make REST API using the Gatling tools.So any one suggest how to do and some related links about Gatling tool API calls.

Thanks in Advance!!!

1

1 Answers

0
votes

hi few example below for reference :-

          exec(
              http("Poll")
                .get(Configuration._URL + "/getData").check(status.is(200))
              )

or

        exec(
          http("Request")
            .put(Configuration.URL + "/createData").check(status.is(200))
            .body(("${xmlRequest}"))
           )