or
Hello,
I would to know if WebAII will support this toolkit as it is a place where the Silverlight Team at Microsoft shares new components.
At the moment, when I want to reference a NumericUpDown like:
Dim Nud As NumericUpDown = appMain.Find.ByName(Of NumericUpDown)("NumericUpDownExecutionTimeOut")Regards.
In vb . net code am geting root panel expression as below and passed as parameter to HtmlFindExpression as below.
AutomationProperty property = new AutomationProperty(prop, typeof(double?));element.GetProperty(property).ToString(); It does not found the property (I get a Null Pointer Exception). What is wrong and can you help me please? Thanks, Mathieu
[TestFixture]public class Fixture1 { [Test] public void Test1() { var m = new Manager(false); m.Start(); m.LaunchNewBrowser(BrowserType.FireFox); var b = m.ActiveBrowser; b.NavigateTo("c:/1.html"); var value = b.Find.ById<HtmlControl>("div1").ScrollTop; }}