I havn't tried using the outerhtml, now you have my interest. I have been getting close with this, but for some reason my elements don't display.. take a look
Code:
Sub Tester()Dim oie As InternetExplorer
Dim oCell As Object
Dim Cnt As Variant
Dim resultClasses, resultClass, resultClasses1, resultClass1
On Error Resume Next
Set oie = FindIE("intranet site")
Set resultClasses = oie.Document.getElementsBytagname("iframe")
Debug.Print "start"
For Each resultClass In resultClasses
' Debug.Print resultClass.Name
Set resultClasses1 = resultClass.Document.getElementsBytagname("input")
For Each resultClass1 In resultClasses1
' Debug.Print resultClass.Name
Debug.Print resultClass.Name & " | " & resultClass1.Name
Next resultClass1
Next resultClass
Debug.Print "done"
End Sub
now obviously this won't click on anything or capture anything.. but it is a way for me to try to FIND what I am looking for thru code.. and, everything I have tried has failed misserably, can you post an example with the outerhtml being used? An example should do, doesn't need to be custom fit for my crisis lol.