I have to pass current epoch timestamp in below "request_1" and "request_2" dynamically. How can I achieve this. Below are just few requests given, actually there are many requests in scripts.
Here all requests should have current timestamp only. So each requests will have different different timestamp.
Is there any function so that I can replace all timestamp directly without replacing one by one.
val Transaction_Name_1 = group("Transaction_Name_1")
{
exec(http("request_1")
.get("/abc/details1?_=1590748529401"))
.pause(5)
.exec(http("request_2")
.get("/abc/details1?_=1590748535534"))
}