How to use _IEFormElementRadioSelect without finding a Form
问题 I need this script to work, but without using _IEFormGetObjByName or _IEFormGetCollection , and while knowing only the Name of the radio buttons. $oIE = _IE_Example ("form") $oDoc = _IEDocGetObj($oIE) $oArray = $oDoc.getElementsByTagName ("input") For $element In $oArray If $element.Name = "radioExample" Then _IEFormElementRadioSelect ($oDoc,2, "radioExample", 1, "byIndex") msgbox(0,"","Found it") Endif Next _IEFormElementGetValue & _IEAction work great, just reference them to the $oElement ,