Missing requests on the html report.

Hi,

I recorderd a scenario on our website. I tried to make query string parameters dynamic, as for example in case of authentication we always get a new SAML request id. So I tried to mine a value from a request, with .check(regex(“test”).saveAs(“testname”)) and use it in examplerequest like:

http(“examplerequest”)
.get(uri5 + “examplelinkpart”+"${testname}"+“examplelinkpart”)
.check(regex(“alsohavetomineanothervaluefromhere”))
.headers(headers_0),

The problem is that it has no syntax error, but there is nothing about examplerequest in the generated html report anymore. What did I make wrong?

Thanks