带有VBA输入事件的Internet Explorer自动化

时间:2012-04-17 12:44:29

标签: internet-explorer vba automation

我正在尝试使用Microsoft Access 2003中的自动化来控制Internet Explorer 9以使用数据库数据完成表单。

输入在浏览器中触发一个事件,该事件验证数据并使保存按钮可见。如果我使用sendkeys,则触发事件;但是,我发现sendkeys非常不可靠。如果我更改元素的值然后使用.fireevent(“onchange”),则没有任何反应 - 甚至不是错误。

我的问题是,如何解雇此事件。或者,我怎样才能找出正在运行的javascript。是否有IE的调试类型的插件,它会告诉我什么事件被触发?如果是这样,我可以自己运行脚本吗?

我的代码如下。

    Set IE = CreateObject("internetexplorer.application")
IE.Visible = True
IE.Navigate "https://extranet.website.com/Planning/Edition/Periodic?language=en"

Do While IE.ReadyState <> 4 Or IE.Busy = True
    DoEvents
Loop


'log in
If IE.Document.Title = "website- access" Then
    IE.Document.getElementById("login_uid").Value = "username"
    IE.Document.getElementById("login_pwd").Value = "password"
    IE.Document.all("ButSubmit").Click
    Do While IE.ReadyState <> 4 Or IE.Busy = True
        DoEvents
    Loop
End If

Do While Not RstAvailability.EOF
    StartDate = RstAvailability!AvailDate
    IE.Document.getElementById("periodStart").Value = Format(StartDate, "dd mmm yy")
    IE.Document.getElementById("periodEnd").Value = Format(StartDate, "dd mmm yy")
    Set LinkCollection = IE.Document.GetElementsByTagName("A")
    For Each link In LinkCollection
        If link.innertext = "Add" Then
            link.Click
            Exit For
        End If
    Next
    Do While IE.ReadyState <> 4 Or IE.Busy = True
        DoEvents
    Loop


    Set objRows = IE.Document.GetElementsByTagName("tr")
    If RstAvailability!RoomType = "DTW" Then
        n = 0
        While n < objRows.Length
            If Trim(objRows(n).Cells(0).innertext) = "Single Room" Then
                For i = 1 To 7
                    'objRows(n).FireEvent ("onchange")
                    'objRows(n).Cells(i).GetElementsByTagName("input")(0).Focus
                    'SendKeys Format(RstAvailability!roomcount - RstAvailability!RoomsSold, "0") & "{TAB}"
                    objRows(n).Cells(i).GetElementsByTagName("input")(0).Value = Format(RstAvailability!roomcount - RstAvailability!RoomsSold, "0")
                    objRows(n).Cells(i).GetElementsByTagName("input")(0).fireevent ("onchange")
                    Do While IE.ReadyState <> 4 Or IE.Busy = True
                        DoEvents
                    Loop
                 Next i
            End If
            n = n + 1
        Wend
    End If

    Set objButtons = IE.Document.getelementsbyname("savePlanning")
    objButtons(0).Click

    Do While IE.ReadyState <> 4 Or IE.Busy = True
        DoEvents
    Loop

    newtime = Now + TimeValue("0:00:10")
    Do While True
        If Now > newtime Then Exit Do
    Loop

    RstAvailability.MoveNext
Loop

输入字段的html为:

<tr class="first" roomId="30494" articleId="0" type="Availability" readonly="False">

<div>

  <span class="roomName">

    Single Room

  </span>



</div>

<span class="data">

<input id="Availabilities" name="Availabilities" type="text" value="" />

</span>

<span class="data">

<input id="Availabilities" name="Availabilities" type="text" value="" />

</span>

谢谢!

2 个答案:

答案 0 :(得分:14)

在这几天出汗之后,答案实际上非常简单,但几乎不可能在MSDN或网络上的任何其他文档中找到。

在更改输入字段的值之前,您可以在该字段上设置焦点。更改值后,需要将焦点设置为另一个字段。显然,这些事件引发了失去焦点。因此,代码应如下所示:

        n = 0
    While n < objRows.Length
        If Trim(objRows(n).Cells(0).innertext) = "Family Room" Then
            For i = 1 To 7
                objRows(n).Cells(i).GetElementsByTagName("input")(0).Focus
                objRows(n).Cells(i).GetElementsByTagName("input")(0).Value = Format(RstAvailability!roomcount - RstAvailability!RoomsSold, "0")
            Next i
            objRows(n).Cells(1).GetElementsByTagName("input")(0).Focus

        End If
        n = n + 1
    Wend

我发现这一点的方法是查看一些关于IE9可访问性的MSDN文档。它建议为残疾用户设定重点。我只是觉得我会尝试一下它有效。我希望这有助于其他人。

戴夫

答案 1 :(得分:1)

如果你想(在IE9中)将下一行放在“Next i”行之前。即使你没有失去焦点,它也应该有用吗?

  

objRows(n)的.Cells(ⅰ).GetElementsByTagName( “输入”)(0)。单击