I want to write some tests that involve communicating from javascript from Silverlight and I want to know if it is possible to inject javascript at runtime?
So in my test project I have the following method in the app.xaml file and I want to be able to dynamically include\insert some javascript.
private void Application_Startup(object sender, StartupEventArgs e)
{
RootVisual = UnitTestSystem.CreateTestPage();
}
Cheers
AWC