Error 438 in getElementsByClassName

Nelson78

Well-known Member
Joined
Sep 11, 2017
Messages
526
Office Version
  1. 2007
Hello everybody.

I don't understand why this error in getElementsByClassName.

I'm logging in a navigating a site via vba.


Code:
Sub navigate()

Dim myId As String, myCode As String
Dim IE As Object

myId = "user"
myCode = "password" 
myURL = "https://example.com/wwww/"

Set IE = CreateObject("InternetExplorer.Application")
With IE
    .navigate myURL
    .Visible = True
    Do While .Busy: DoEvents: Loop   
    Do While .readyState <> 4: DoEvents: Loop 
End With

myStart = Timer
Do  
    DoEvents
    If Timer > myStart + 1 Or Timer < myStart Then Exit Do
Loop

'Log in

IE.document.getElementsByTagName("input")(0).Value = myId
IE.document.getElementsByTagName("input")(1).Value = myCode
IE.document.getElementsByTagName("button")(0).Click


    Do While IE.Busy: DoEvents: Loop    'Attesa not busy
    Do While IE.readyState <> 4: DoEvents: Loop 'Attesa documento

IE.document.getElementsByClassName("close-tab")(0).Click

Error on the last row:

error 438 object doesn't support this property or method internet explorer
 
Last edited:

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).

Forum statistics

Threads
1,215,523
Messages
6,125,318
Members
449,218
Latest member
Excel Master

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