I want to test several number of user registrations.
There is ajax call for adding user to db, which i have specified in gatling.
I have provided the user details, and the url.
But I dont see real entries getting added to Database user table, after i run gatling.bat file.
How are the reports generated then, if user entry is not getting added to to database table?
Oe am I missing something?
.exec(http(“request_13”)
.post("""/wp-content/themes/myprek/api/index.php/student""")
.formParam(""“user-name”"", “”“testuser1@mail78.com”"")
.formParam(""“user-email”"", “”“testuser2@mail78.com”"")
.formParam(""“user-password”"", “”“testpass123"”")
.formParam(""“user-confirmpassword”"", “”“testpass123"”")
.formParam(""“user-telephonenumber”"", “”“8734392323"”")
.headers(headers_13)
)
Thanks in advance for reply/help