Hello, im trying to click the following butten
"<input class="submit" type="submit" value="Commit"/>"
However as you can see there is no name or ID, I have tried using the following to no avail
Local $oBtns = _IETagNameGetCollection($o_frame2, "submit") For $oBtn In $oBtns If ($oBtn.ClassName) = "submit" Then _IEAction($oBtn, "Focus") _IEAction($oBtn, "click") EndIf Next
I have tried changing the code slightly,
I have tried .Class and .Classname and .Type .Value, Ive tried using Linkgetcollection/TagGetcollection,
Any ideas?
Thanks in advance
Ant.