Hi @Devon Nullman ,
If you load the page into a Web Browser, you can use the code below to grab the available links.
Private Sub WebBrowser1_DocumentCompleted(sender As Object, e As WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
For Each ClientControl As HtmlElement In WebBrowser1.Document.Links
Dim href As String = ClientControl.GetAttribute("href").ToString
If href.Contains("https://") Then
ListBox1.Items.Add(href)
End If
Next
End Sub
Hope the code above could be helpful.
Best Regards.
Jiachen Li
*
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.