lokithorshield
11 years agoContributor
Hi I am trying to design a framework by creating a common function. what I want is store the Aliases
Hi I am trying to design a framework by creating a common function. what I want is to store the Aliases or name mapped variables in an excel and retreive it. Use them to pass as a common variable and perform an action like click or something. when i store the aliases in a variable and pass to another function its not working, is there any way to achieve this.
How do use those variables?
If you using just as variables it may not work, since variables does not have click (or what ever) method you would like to performe.
you may use eval method...
eval('Fully qualified object name') would return the object.
If you're working in VB, you can also use Set
set mylocalvariable = myexcelstring1
mylocalvariable will now be the object you want