I'm trying to automate some commands by getting some values from the web page, but this error appears and I don't know what it should be
Sub Test()
Dim IE As New InternetExplorerMedium
IE.Visible = False
IE.navigate "http://..."
Do
Loop Until Not (IE.Busy)
Cells(4, 2) = IE.document.getElementsByClassName("style363")(0).innerText
Stop
End Sub