使用 Selenium 绕过 Recaptcha 时 VBA 中的自动化错误

问题描述

我在 VBA 中使用 Selenium 填写表单,(希望)绕过验证码,然后单击搜索按钮。

执行以下代码

Dim driver As New ChromeDriver
Sub Selenium()
lRow = ActiveWorkbook.Sheets("LLC and LTD").Cells(Rows.Count,1).End(xlUp).Row
Dim By As New By,robot As WebElement
driver.Start "Chrome"
For i = 2 To 2
    Address = ActiveWorkbook.Sheets("LLC and LTD").Cells(i,19).Value
    With driver
        .Get "https://onlineservices.miami-dadeclerk.com/officialrecords/StandardSearch.aspx"
        .FindElementByName("ctl00$ContentPlaceHolder1$pfirst_party").SendKeys (Address)
        .SwitchToFrame .FindElementByXPath("//iframe[contains(@src,'recaptcha') and not(@title='recaptcha challenge')]",timeout:=10000)
        .FindElementByCss("div.recaptcha-checkBox-checkmark").Click
        .FindElementByXPath("//*[@id='btnNameSearch']").Click
    End With
Next i
End Sub

但是,它会产生一个自动错误,表明操作已成功完成。在 Selenium 上发生的所有事情就是将地址粘贴到输入框中。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)