我正在制作一个带有VBScript的bot,它在Internet Explorer中打开一个网页并单击一个按钮。我打开了页面,但我不知道如何点击按钮。我有元素。我想做这样的事情:
browser.Document.All("Button_Name").Click()
答案 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