我需要创建一个vb脚本,它将从下拉选择框中选择一个值。 问题是我只知道窗口的名称;没有技术ID的窗口或下拉列表是已知的。 我只能通过“AppActivate”把它带到前面。 我也尝试使用“SendKeys”,但它不是一个可编辑的下拉菜单,所以简单地输入值无济于事。
你能帮忙吗?此致 Suyash Rathi。
答案 0 :(得分:3)
太多不知名的员工,但这里有一些事情可以开始。
假设我们在hmtl页面中有这个代码:
<select>
<option value="A">Volvo</option>
<option value="B">Saab</option>
<option value="C">BMW</option>
<option value="D" selected>Audi</option>
</select>
在.vbs脚本中添加:
Set IE = WScript.CreateObject("InternetExplorer.Application", "IE_")
IE.Visible = True
IE.Navigate "http://your_target_url_here.com/"
Do
WScript.Sleep 100
Loop While IE.ReadyState < 4 And IE.Busy
' get first HTMLSelectElement object:
Set e = Document.getElementsByTagName("select")(0)
' just for undestanding...
MsgBox e.Options(e.selectedIndex).Value '-> "D"
MsgBox e.Options(e.selectedIndex).Text '-> "Audi"
' select first option:
e.selectedIndex = 0