我想在Internet Explorer中打开一个网页并导航到一个页面,然后使用vbscript点击页面中的按钮。 例如
这是我唯一能找到的东西(仅在IE中打开一个页面):
Set WshShell = WScript.CreateObject("WScript.Shell")
Return = WshShell.Run("iexplore.exe www.gmail.com", 1)
请帮帮我。
答案 0 :(得分:1)
类似的东西:
Set IE = CreateObject("InternetExplorer.Application")
Set WshShell = WScript.CreateObject("WScript.Shell")
IE.Navigate "http://mydomain.com/form.asp"
IE.Visible = True
Wscript.Sleep 2000
IE.Document.All.Item("Item1Id").Value = "1000"
IE.Document.All.Item("Item2Id").Value = "1001"
IE.Document.All.Item("Item3Id").Value = "Some Text"
Call IE.Document.Forms(0).Submit()