Created
December 27, 2018 08:58
-
-
Save andhikayuana/8346bd5f250293d37fc9da0420297f2d to your computer and use it in GitHub Desktop.
postman collection runner article
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var random = Math.floor(Math.random() * 100000000); | |
pm.globals.set("user_phone", "+628681"+random); | |
pm.globals.set("user_email", "u"+random+"@jarjit.com"); | |
pm.globals.set("user_fullname", "u"+random+" jarjit "); | |
pm.globals.set("user_gender", Math.random() < 0.5 ? "male" : "female"); | |
pm.globals.set("user_dob", "1990-01-01"); | |
pm.globals.set("user_is_public", true); | |
pm.globals.set("user_description", "hello "+random); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment