Example of the tree I'm dealing with
I am trying to click the 'followers' button on an IG account I run to see see the new users who have followed me automatically. (The example in the included picture is not my account for privacy reasons) I can find the class ID, but using something like
Dim allelements As HtmlElementCollection = webBrowse.Document.All
For Each webpageelement As HtmlElement In allelements
If webpageelement.GetAttribute("class") = "g47sy " Then
webpageelement.InvokeMember("click")
End If
Next
returns nothing for me... I know it's because this class is buried in JS and then further down the line. I can't for the life of me figure out how to check the elements of something buried so far in..
Any help would be super appreciated! Thank you!