Hi there,
I read here at other questions about gatling save my session cookies automatically, so now I’m trying to obtain all values from my diverse “set-cookie” response headers and save those values in a .csv file.
My code below are saving only the first “set-cookie” that is displayed at response headers:
.check(header(“set-cookie”).saveAs(“cookies”))
How can I save all ocurrences of “set-cookie” thats related to my request?
Tks.