VBA代码可打开链接并在链接中搜索动态关键字

时间:2019-02-04 16:47:12

标签: excel vba internet-explorer navbar

我对此进行了大量研究,但是我似乎无法确切地找到解决问题的方法。在N:N列中,我有数百个要循环浏览并打开的链接。代码打开它们后,我将拥有另一个工作表,该工作表包含一个动态的单词/短语列表,我希望代码在每个单独的链接中进行搜索时都可以引用。如果代码未在页面中找到任何内容,则它将关闭窗口并转到下一个链接。如果确实找到匹配项(不必区分大小写),则它将所有单词/短语复制到相应的O:O单元格中,每个单词/短语之间均用“;”分隔。

根据我的研究,我有下面的代码片段将打开链接:

Dim ie As Object   
Set ie = CreateObject("InternetExplorer.Application") 
ie.Visible = True   
Dim x As Integer 
Dim links As Hyperlinks 
Set links = ActiveSheet.Hyperlinks  
For x = 1 To links.Count 
    ie.navigate links.Item(x).Address, Nothing, "_blank"
Next

但是,我似乎找不到任何东西可以帮助我完成这段代码的最后一部分。我对VBA相当熟悉,但这超出了我的技能范围。

谢谢你!

1 个答案:

答案 0 :(得分:0)

要在网页中搜索关键字或文本,可以参考下面的代码示例。

Sub scraper()

        Dim site As String
        Dim lastRow As Long
        Dim ie

        With ActiveSheet
            lastRow = .Cells(.Rows.Count, "A").End(xlUp).Row
        End With

            Set ie = CreateObject("internetexplorer.application")
            ie.Visible = True

            ie.navigate site

            'idle while ie is busy
            Do
            Loop Until ie.readystate = 3
            Do
            Loop Until ie.readystate = 4

            With ie.document
                .getelementbyid("UserName").Value = uName
                .getelementbyid("Password").Value = uPass
                .forms(0).submit
            End With
            On Error GoTo error

            Do
            Loop Until ie.readystate = 3
            Do
            Loop Until ie.readystate = 4

            For i = 2 To lastRow

                site = Range("A" & i).Value
                ie.navigate site

            Do
            Loop Until ie.readystate = 3
            Do
            Loop Until ie.readystate = 4


        msg = ie.document.Body.innerhtml
        If InStr(msg, "Text To Find") = 0 Then
            ActiveSheet.Range("B" & i).Value = "Not Found"
        Else
            ActiveSheet.Range("B" & i).Value = "Found"
       End If
jump:
            Next i
        Exit Sub
error:
    ActiveSheet.Range("B" & i).Value = "Unknown Error!"
Resume jump


End Sub

这是示例代码,您可以尝试根据自己的要求对其进行修改。

参考:

Search a web page for a particular text

对于将值从一个单元格粘贴到另一个单元格的复制,您可以参考下面的链接,这样可能会给您一个想法。

Best Way To Copy & PasteSpecial Values Only With VBA