Hi
I have a small program that i've written to test a web site. The program automatically logs into the website, changes the date, selects radiobuttons and refreshes the screen. The problem is that I've encountered an autocomplete RadComboBox that I can identify, set focus and change the value. However, it cannot get the event to fire once the "value" has been changed.
I have tried to fire an event with invokemember / setattribute - onchange, mouseup, mousedown, ontextchange, click, onclick, select item, submit etc to to no avail.
How do I get this RadComboBox to recognize a change programatically?
<code>
vb.net 2010
.....
For Each element As HtmlElement In m_document.GetElementsByTagName("input") 'input
If element.Name = RadComboBox Then
Debug.Print("RadComboBoxt found")
element.Focus()
element.InvokeMember("click")
element.SetAttribute("value", "00138SUPP")
.........
</code>
Thanks!!!!!