我正在尝试使用以下代码单击带有VBScript的按钮:
Set IE = CreateObject("InternetExplorer.Application")
Set WshShell = WScript.CreateObject("WScript.Shell")
IE.Navigate "google.com"
IE.Visible = True
Wscript.Sleep 2000
IE.Document.All.Item("uss").Value = "username"
IE.Document.All.Item("pass").Value = "pass"
IE.Document.All.Item("character").Value = "character"
IE.Document.All("").Click()
如何点击没有名字的按钮?
这是我要选择的submit
按钮:
<td colspan="2" align="right"><input type="submit" value="Submit Now!"></td>
观察该按钮没有名称。如果我尝试使用提交功能,则scipt不起作用或网页不响应。有什么想法吗?
答案 0 :(得分:0)
在这种情况下你没有选择,所以抓住标签名称。
For Each btn In IE.Document.getElementsByTagName("input")
If btn.type = "submit" Then btn.Click()
Next