导出网站信息

时间:2013-11-24 04:58:26

标签: vbscript

我对VBScript很新。我想从网站(即overstock.com)中提取价格信息。如果我搜索搜索框中的项目,例如项目编号11111696.如何使用VBScript将其价格导出到Excel工作表? 例如,我在VBScript中使用此代码,使用IE浏览该站点,按项目编号查找该产品。

Set IE = WScript.CreateObject("InternetExplorer.Application", "IE_")
IE.Visible = True
    IE.Navigate "www.overstock.com"
wscript.sleep(2000)
    IE.document.all.item("search-input").value = 11111696
wscript.sleep(300)
    IE.document.all.item("search-button").click

0 个答案:

没有答案