Vbscript GetObject返回未指定的错误

时间:2017-06-26 09:04:50

标签: vbscript

我是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

我不知道会出现什么问题。

任何人都可以帮助我吗?

由于

0 个答案:

没有答案