I've looked at about 30 different questions, and each one deals with "getelementbyID". My issue is the element I need to scrape doesn't have an id:
I see it is inside of an "h6" class or tag, but
msgbox IEObj.Document.getelementsbytagname("h6").Value
msgbox IEObj.Document.getelementsbyclassname("h6").Value
just returns the "Object doesn't support this property or method". What am I doing wrong?? (The rest of the code just sets up a IE Object called IEObj, and navigates to this page, so it's unimportant).

