Hi,
Is there a way I can print out all the header values? I read the documentation and the cheat sheet, but I still can’t figure it out. I am very new to scala and Gatling so I may be missing something really obvious.
`
exec(
http(“Get Events”)
.get("/events")
.headers(headers)
.check(header(“Content-Type”).is(“a”))
)
`
I know how to check for a specific header, but I don’t know what all the headers are.
Thanks.