我正在excel中创建vba sub以自动从网站获取数据。但是我坚持点击一个元素。我一直收到错误运行时错误-02147417848(80010108)。我不知道我是否错过了什么。我已经尝试过使用它的id和名字,但它也是一样的。
Sub audit()
Dim ie As Object
Set ie = CreateObject("InternetExplorer.Application")
ie.Visible = True
With ie
.Visible = True
.navigate "https://samplesite.com"
End With
While ie.Busy
DoEvents
Wend
Application.Wait (Now + TimeValue("0:00:05"))
ie.document.getElementsByClassName("xxxxxxx")(0).Click // usually the error is here
End Sub