点击网页上的按钮通过VBScript?

时间:2011-03-13 22:20:29

标签: button vbscript click bots

我正在制作一个带有VBScript的bot,它在Internet Explorer中打开一个网页并单击一个按钮。我打开了页面,但我不知道如何点击按钮。我有元素。我想做这样的事情:

browser.Document.All("Button_Name").Click()

1 个答案:

答案 0 :(得分:2)

'Search Google
Dim objWshShell,IE,searchStr

Set objWshShell = Wscript.CreateObject("Wscript.Shell")
Set IE = CreateObject("InternetExplorer.Application")
searchStr = InputBox("Search")

With IE
  .Visible = True
  .Navigate "http://www.google.com"

'Wait for Browser
  Do While .Busy
    WScript.Sleep 100
  Loop
  .Document.getElementsByName("q").Item(0).Value = searchStr
  .Document.getElementsByName("btnK").Item(0).Click
End With