This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to pull the value from one function and provide same value input for other function ?

Hi ,

How to pull the value from one function and provide same value input for other function ?

do we have any example steps ?

  • Suggested Answer

    0  

    Hi  

    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