Forum Discussion
BrianBeard42
Apr 19, 2022Copper Contributor
Saving a Variable and displaying it
This should be an easy answer but I can't find any documentation on it. I want to be able to prompt the user and receive an answer. I then want to prompt the user again for another answer and use t...
GregoryLisiak
Microsoft
Apr 27, 2022BrianBeard42 In this particular example, you would concatenate the text string and your variable together such as the following;
"Hi" + scenario.varName + "! How are you today?"
This should provide you the results you are looking for.
BrianBeard42
Apr 27, 2022Copper Contributor
GregoryLisiak, thanks for the response. I was able to figure it out the other day and it is exactly what you posted.