Forum Discussion
mesg2anil
15 years agoRegular Contributor
Hi Robert,
Forgot to mention... I'm using VB scripting... the code which you gave is JScript...
Could you please give me the code for VB script?
Also with the code you gave... how can I use it in the below code to call the required link? I mean how to call the function which you gave me?
tester
Forgot to mention... I'm using VB scripting... the code which you gave is JScript...
Could you please give me the code for VB script?
Also with the code you gave... how can I use it in the below code to call the required link? I mean how to call the function which you gave me?
sub tester
tester
Call TestedApps.iexplore.Run
Set iexplore = Sys.Process("iexplore").Page(http://server1/login.asp)
iexplore.document.all.Item("txtLoginId").Value = ""UID"
iexplore.document.all.Item("txtPassword").Value = "Pwd"
iexplore.document.all.Item("cmbLogin").Click
End sub
Please suggest!!