我正在尝试将我的脚本设置为睡眠状态,直到网站中有一个类为止。
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
同样的错误。有什么问题?