Hi,
I am planning to create the script like below. Let's say I have 5 actions. Action1 will run always and depends on the parameter I pass from data sheet, I have to run either Action2 or Action3 and so on. How to call Action2 or Action3 from Action1.
Ex: In datasheet I have like Login, Search, Submit, Edit,etc.
Action1
{
Always execute this.
If X= Search
Action3();
else if X=Submit
Action2();
}
How to call actions depends on value.. Can anybody help how to write script. Please let me know if you need any other information.
Thanks,
TRao