;This is the Frame hierarchy I'm dealing with
;I want the last frame on the end with the asterisks
;Frame
; Frameset
; Frame
; Frame
; Frame
; Frameset
; Frameset
; Frame*
$oFrame = _IEFrameGetCollection($oIE)
$oFrameset = _IEFrameGetCollection($oFrame, 0)
$oFrameset2 = _IEFrameGetCollection($oFrameset, 3)
$oFrame2 = _IEFrameGetCollection($oFrameset2, 1)I'm after $oFrame2 because that's where the Input tags are that I need to set the values. But when I do an: _IEIsFrameset($oFrameset)
_IEIsFrameset($oFrameset2)The first one is true and the second one is false. Where would $oFrameset2 be? What's the proper way to get to $oFrame2?