Hi ,
How to pull the value from one function and provide same value input for other function ?
do we have any example steps ?
Cybersecurity
DevOps Cloud (ADM)
IT Operations Cloud
If an answer to your question is correct, click on "Verify Answer" under the "More" button. The answer will now appear with a checkmark. Please be sure to always mark answers that resolve your issue as verified. Your fellow Community members will appreciate it!  Learn more
Hi ,
How to pull the value from one function and provide same value input for other function ?
do we have any example steps ?
Here is a basic example:
[-] String GetStringFunction() [ ] return "Example String" [ ] [-] PrintValue(String sValue) [ ] print(sValue) [ ] [-] testcase example() appstate none [ ] String sValue = GetStringFunction() [ ] PrintValue(sValue)
Regards
Robert