IE文档中的VBScript错误80004005检查类

时间:2018-06-17 08:10:39

标签: vbscript

我正在尝试将我的脚本设置为睡眠状态,直到网站中有一个类为止。

Set IE = createobject("internetexplorer.application")
strURL = "SomeUrl"

If IsNull(IE.Document.GetElementsByClassName("button")) Then
    IE.navigate strURL
    Do While (IE.Busy Or IE.ReadyState <> 4)    
        WScript.Sleep 100
    Loop
End If

我看了一下这个错误并没有说明错误,所以我不知道。 “未指定错误”代码80004005 at:

If IsNull(IE.Document.GetElementsByClassName("button")) Then

我也试过了:

Set Button = IE.Document.GetElementsByClassName("button")
If IsNull(Button) Then
    IE.navigate strURL
    Do While (IE.Busy Or IE.ReadyState <> 4)    
        WScript.Sleep 100
    Loop
    Set Button = IE.Document.GetElementsByClassName("buttonp")
End If

同样的错误。有什么问题?

0 个答案:

没有答案