Hi,
We want to use the Current test Html instance variable to another tests.
Example: WebTest1
HtmlInputText txtleavename = Manager.ActiveBrowser.Find.ById<HtmlInputText>("txtLeaveName");
WebTest2
txtleavename.Focus();
txtleavename .Text="sick Leave";
So here we want to use the variable "txtleavename" in WebTest1 for multiple times in the WebTest2. How can we refer this variable without initialize again in WebTest2.
Thanks
Saravanan