我需要通过vbscript自动检查(选择)IE网页中的复选框。 我为它编写了一些代码,但它为document.getElementById(“checkBox(IsAdmin)”)提供了“Object Required”错误, 代码开始:
Set oIE = CreateObject("InternetExplorer.application")
With oIE
.Visible = True
.navigate ("link")
wscript.sleep 500
End With
Set oShell = CreateObject("WScript.Shell")
Dim document
document.getElementById("checkBox(IsAdmin)")
Item(0).Checked = True
HTML源代码如下:
有人可以帮我吗?
答案 0 :(得分:2)
确保checkBox ID
正确无误。 Document
也是IE
对象成员。
oIE.Document.getElementById("IsAdmin").Checked = True