IE browsing and user field manipuilation

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:

https://imgur.com/a/WOJ65p0
WOJ65p0


Is there anbyway of navigating to these 2 input boxes at all?
 
Last edited:

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.

Forum statistics

Threads
1,214,971
Messages
6,122,521
Members
449,088
Latest member
RandomExceller01

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