namespace UnitTestProject4
{
public class Class1: BaseTest
[Test]
{ public void Testmethod1()
{
Manager.LaunchNewBrowser(BrowserType.InternetExplorer);
ActiveBrowser.NavigateTo("http://www.wikipedia.org/");
Class2. Testmethod2 ("Telerik Test Studio");
Find.ByName<HtmlInputSubmit>("go").Click();
}
public partial class Class2
{
static Settings setting = new Settings();
static Manager Manager = new Manager(setting);
public static void Testmethod2 (string A)
{
Manager.ActiveBrowser.Find.ById<HtmlInputSearch>("searchInput").Text = A;
}
}
}
Hi, i am currently facing an issue with recording in telerik. This is an open issue pending debugging from telerik. Meanwhile i wanted to enquire, is it possible in any way to record my test case in visual studio and playback and debug in telerik. As i have seen, that the entire recording is sccusfully done in VS. and i wish to use teleriks multiple browser playback att attribute.
Thanks
akhil