| |
ZenKenobi
Posts: 10
Score: 0
Joined: 8/3/2004
From: USA
Status: offline
|
I need to write a script that logs into a specific web page. The script I have so far is this 'create internet explorer object set ie = createobject("internetexplorer.application") 'set window size ie.top = 5 ie.left = 80 ie.width = 1194 ie.height = 955 'navigate to the right page ie.navigate "Http:the page I want to go to" ie.visible = true 'wait 10 seconds for page to display login prompt wscript.sleep 10000 'type username into default text box 'navigate to password textbox 'enter password into said textbox 'hit "enter" The trouble I am having is entering text into the default textbox. What function do I use? After that I must hit "tab" programatically, enter text into the next field, then hit "enter" programmatically. Is this possible?
_____________________________
Erik Gardner
|
|