我是vbscript的新手,我正在编写一个应用程序:
到目前为止,我有:
Dim obj
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
IE.navigate "www.google.com"
WScript.Sleep 4000
IE.Document.getElementById("lst-ib").value = "Test"
IE.Document.Forms(0).Submit()
WScript.Sleep 4000
Set IE = GetObject("","InternetExplorer.Application")
obj = IE.Document.All.item("resultStats").InnerText
MsgBox obj
但是,如果我运行此操作,我会收到以下错误:
Error: Unspecified error
Code: 80004005
我不知道会出现什么问题。
任何人都可以帮助我吗?
由于