Riztac
7 years agoNew Contributor
How to define dynamic variable in testComplete like we do in Soapui with $ sign "${#Var2}"
Hi,
Ive got two project level variables in TestComplete:
Var1 = ${#Var2} <--- ???
and
Var2 = 123456789
using Log.Message(Project.Variables.Var1) should evaluate to "123456789" but it just prints ${#Var2} as string.
is there any way we can make it dynamic?
in particular I want to update the value of a variable defined in "ReadyAPI-Test Edit-Properties" page with the value from project's local or persistent property value. The reason is that this variable is not accessible using script, the only option available is to execute i.e. ReadyAPI.TestCase.Execute()
Thanks