And as an extension to that is there a good way to inject an arbitrary
value into the session without a check? For instance I want to create
a fake unique email for each user. It would be nice if at the
beginning of each execution I could inject an arbitrary value into the
session something like:
scenario("Some scenario").prepare((s: Session) => saveAs("userEmail",
"test" + s.userId + "@someDomain..com"))
Is there a way to do something like this? Or maybe I'm making it too
complicated and there's a simple way to generate a unique value per
execution.
Chris