Hi ,

i have automated some websites which are based on HTML .

It automates login and password input and then it clicks login.

I am not able to figure out which object will be used to handle frames
on this webpage.

1)https://login.isso.db.com/websso/sso_ext_Logon.sso

2)https://sf.citidirect.com/


Please help.....

I would not like to use sendkeys.

this webpage is XMLHTTP based.

Your suggestions and reference to other sources are welcome

some codes i have used before...........


Set UserN = appIEus.document.getElementsByName("txtUserLogin")
' clicking submit button

If Not UserN Is Nothing Then
    UserN(0).Value = "NameOfUser"

End If

Do While appIEus.Busy: DoEvents: Loop
 Do While appIEus.readyState <> 4: DoEvents: Loop

'enter the password

Set PW = appIEus.document.getElementsByName("txtUserPassword")
' password
If Not PW Is Nothing Then
    PW(0).Value = "PassOfUser"

End If


' click 'Submit' button


Set sbmt = appIEus.document.getElementsByName("Submit")
' clicking submit button
If Not sbmt Is Nothing Then
    sbmt(0).Click


-- 
----------------------------------------------------------------------------------
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

We reach over 6,500 subscribers worldwide and receive many nice notes about the 
learning and support from the group. Our goal is to have 10,000 subscribers by 
the end of 2009. Let friends and co-workers know they can subscribe to group at 
http://groups.google.com/group/excel-macros/subscribe

Reply via email to