bills4 Posted October 16, 2011 Posted October 16, 2011 <form id="landing_form" class="" action="/signup" method="get"><div class="rb_line clearfix"><input type="radio" value="30" name="startsub">.........form dont have name , how can to click it ?
JohnOne Posted October 16, 2011 Posted October 16, 2011 Use its id. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
bills4 Posted October 16, 2011 Author Posted October 16, 2011 how use ?this is full form html<form id="landing_form" class="" action="/signup" method="get"><input type="radio" value="30" name="startsub"><input type="radio" checked="checked" value="60" name="startsub"><input type="radio" checked="checked" value="60" name="startsub"><input type="radio" checked="checked" value="60" name="startsub"></form> it have 4 input on a form , but dont have form name how can check to<input type="radio" value="30" name="startsub">
JohnOne Posted October 16, 2011 Posted October 16, 2011 Show the code how would click it, if it did have a name. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
bills4 Posted October 17, 2011 Author Posted October 17, 2011 (edited) $oForm = _IEFormGetObjByName ($oIE, "name of form") ; but it dont have name on formFor $i = 1 To 2 _IEFormElementRadioSelect ($oForm, "30", "startsub", 1, "byValue") Sleep(1000)Next i use this code if have name form Edited October 17, 2011 by bills4
JohnOne Posted October 17, 2011 Posted October 17, 2011 Replace with _IEGetObjById() AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now