IE browsing and user field manipulation

steveuk87

Board Regular
Joined
Nov 25, 2013
Messages
78
Hi All,

I have the following code:

Code:
Sub NewTest()

Dim IE As Object
    Set IE = CreateObject("InternetExplorer.application")
    With IE
        .Visible = True
        .navigate ("my website")
        While .Busy Or .readyState <> 4: DoEvents: Wend
    .document.getElementById("txtIdentity").Focus
    .document.getElementById("txtIdentity").Value = "stephen"
    .document.getElementById("txtPassword").Focus
    .document.getElementById("txtPassword").Value = ""
    
    .document.all("btnLogon").Click
    While .Busy Or .readyState <> 4: DoEvents: Wend
        
    .document.getElementById("ctl00_QC").Focus
    .document.getElementById("ctl00_QC").Value = "LAMT"
    
    .document.all("ctl00_btnQCSamePage").Click

    While .Busy Or .readyState <> 4: DoEvents: Wend
    '***NOT WORKING!!****
    '.Document.getElementById("iLOTNOENT").Focus
    '.Document.getElementById("iLOTNOENT").Value = "L"
    
    '.Document.getElementById("LOTAPPROIND").Focus
    '.Document.getElementById("LOTAPPROIND").Value = "Y"
    '***NOT WORKING!!****
        'Debug.Print .LocationURL
    End With
    
End Sub
Unfortunately the end of the code isn't working and i'm not sure why, but i may be because the website is using different panels for its layout?

See picture: Here

Is there anyway of navigating to these 2 input boxes at all?
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Are you sure they are ID's and not classes or names? can you post the HTML code? what error are you getting currently?
 
Upvote 0
Hi Barry,

Thanks for the response. Yes they should be ID's as the other boxes are working fine... I get a run-time error '424' Object required.
This is the same error i got when i didn't have the correct ID. Can't give the HTML unfortunately as its not my code i'm accessing, however the ID is correct.
 
Upvote 0

Forum statistics

Threads
1,214,397
Messages
6,119,273
Members
448,883
Latest member
fyfe54

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top