VB.net WebBrowser and AJAX List Options
Posted
by Vinsick
on Stack Overflow
See other posts from Stack Overflow
or by Vinsick
Published on 2010-05-05T02:12:52Z
Indexed on
2010/05/05
2:18 UTC
Read the original article
Hit count: 249
I'm writing a VB.net program for a website that uses the AJAX Lits options http://www.ajaxdaddy.com/demo-dhtml-autocomplete.html
Whats more is that the website has used additional arguments in the function that i'm not exactly sure what they are calling, and there a trigger that executes an action that must be click, tabbing and returning fail.
Any idea on how to automate this? This website has been a holy terror since it was unleashed on my company.
I've tried this:
Dim ObjArr(4) As Object
ObjArr(0) = CObj("prac_select")
ObjArr(1) = CObj("'getCountriesByLetters'")
ObjArr(2) = CObj("1")
ObjArr(3) = CObj("'prac_name'")
ObjArr(4) = CObj("'practice'")
WebBrowser1.Document.InvokeScript("ajax_showOptions", ObjArr)
© Stack Overflow or respective owner