VBA - .document.getElementById Run-Time Error 424 Object Required

Dad_x6

Board Regular
Joined
Jan 15, 2013
Messages
89
I am trying to fill in fields on a webpage with Excel VBA. I have done this frequently, but am having trouble now. When I use ie.document.getElementByID I am getting a 424 error (Object Required). I can see that I have the correct ID name, so I don't understand why this is happening.

Here is the line of code I am using...

Set objElem = .document.getElementByID("sys_original.IO:3b05fe9b1b00ac14a6fdfd9f034bcbd3")

Here is the HTML for that field that I want to connect to...

<input name="sys_original.IO:3b05fe9b1b00ac14a6fdfd9f034bcbd3" id="sys_original.IO:3b05fe9b1b00ac14a6fdfd9f034bcbd3" type="HIDDEN" value="">

Any thoughts on what I am doing wrong?

Thank you.
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Maybe the element doesn't exist or isn't ready at the time you retrieve it. Try waiting for it:
VBA Code:
Do
    Set objElem = .document.getElementById("sys_original.IO:3b05fe9b1b00ac14a6fdfd9f034bcbd3")
    DoEvents
Loop While objElem Is Nothing
 
Upvote 0

Forum statistics

Threads
1,216,025
Messages
6,128,348
Members
449,443
Latest member
Chrissy_M

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