Does anyone know how to get this code to get info on nested iframes? Basically iFrames within iFrames and framesets?
Func _TestForFrames() _DebugSetup("Frames Check") Local $URL = $MainURL Local $oIE = _IECreate($URL, 1, 1, 1, 1) Local $oFrames = _IEFrameGetCollection($oIE) Local $iNumFrames = @extended For $i = 0 To ($iNumFrames - 1) Local $oFrame = _IEFrameGetCollection($oIE, $i) MsgBox(0, "Frame Info", _IEPropertyGet($oFrame, "locationurl")) _DebugOut(_IEPropertyGet($oFrame, "locationurl")) Next EndFunc ;==>_TestForFrames
Also - can the _IEPropertyGet return the frame name instead of the locationurl? I looked but did not see that option in ie.au3.