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