I\'m trying to automate in a WinForm using a WebBrowser control to navigate and pull report info from a website. You can enter values in textboxes and invoke the click events fo
HtmlElement hField = webBrowser1.Document.GetElementById("ID"); hField.SetAttribute("selectedIndex", "2");
select by index (zero based) not the value....