i can do all thing to automate a tradition website but can not with AJAX web base. This web have a not standard dropdownlist writen by javascript, a mix of a buttong and unorderlist, something like:
<button name="ddl" id="ddl_button"/>
<ul name="ddl">
<li id="it1"> item1 </li>
<li> item2 </li>
<li> item3 </li>
<li> item4 </li>
<li> item5 </li>
</ul>
when i click on the button, the appear with all "li" item like a dropdownlist and the miracle is i can click on the "li" part. When i click on any "li" control, the Ajax code being done. I used firebug to know that because there was an "xhr post" appeared. So can i use what thing in geckowebbrowser or javascript to imitate the click on "li" control? i often use technich write a javascript code to do action into the urlbar of the webbrowser to do action, something like:
javascript:void(document.getElementById('ddl_button').click(),
it's always work but when i write:
javascript:void(document.getElementById('it1').click(),
it's not work. I think because li control is unclickable by default, so how can i do that? i also think about using C# code to move cursor and imitate a click programaticaly but its so complicated.