For example, this should work if TEST_ID is an environment variable:
variables:
email: foo-${TEST_ID}@bar.com
Currently, as a workaround, TEST_ID needs to be injected in requests, i.e.:
variables:
username: foo
domain: bar.com
requests:
...
body:
json:
email: ${username}-${TEST_ID}@${domain}
For example, this should work if
TEST_IDis an environment variable:Currently, as a workaround,
TEST_IDneeds to be injected inrequests, i.e.: