Hi every one
I want to extract the link that is in this page
https://old.goo-2o.com/5dfd16ae0d783
found in the text "Click here"
but the problem is: the result in the Debug is always "NULL"
here is my code
Code
Set elems= html.getElementsByClassName("unauth_capsule clearfix")
For Each elm In elems
result = elm.getAttribute("href")
Debug.Print result
Next
Thanks in advance