Hi,
The scenario is , I have a silverlight application and I have created testcases using Telerik Framwork. I'm able to run the tests in my development machine. I tried to create a Setup project for the same. I want to run the test cases from this setup which would get installed in my machine. its possible from my current development machine. Now i tried to install the setup in a different machine, where i have telerik Framework , .net 4.6 and silverlight installed. VS is not a prerequisite. But here I run into a "Wait for condition has timed out exception" when the LaunchNewBrowser() is executed.
Here is my sample code:
// Initialize the settings
var settings = GetSettings()
settings.Web.EnableSilverlight =
true
;
settings.Web.DefaultBrowser = BrowserType.InternetExplorer;
settings.Web.BaseUrl = BaseUrl;
Initialize(settings);
Manager.LaunchNewBrowser();
ActiveBrowser.NavigateTo(BaseUrl);
Can someone help me with this.
Thanks in Advance,
Stephly