|
Using sendkeys in a web form I need a script to open a website, tab thru a form in that webpage and
"submit" or "enter"at the 11th field (after doing tab for 11 times). I can
get the website open and the window acticvate but in order to be able to tab
inside the page I need to "click" on it. How can I replicate the "click"
event by using SendKeys or other method of VBScript.
Here is what I have
Set wshshell=CreateObject("wscript.shell")
With CreateObject("InternetExplorer.Application")
..Navigate "http://www.hcso.tampa.fl.us/pub/default.asp?/Online/sname01"
..visible=true
End with
Thanks in adavance |