Good evening everyone
Before all, I want to say that I'm doing this script to see how _IE* functions work, and see if my studs can hack a quiz I'm working on.
I want to clarify that I'm not automating any game, bypassing any CAPTCHAs, or anything that could damage anyone.
I was trying to autofill a form, based on which question is displayed.
The question is always stored in here:
<header>
<h1><span class="questionid">1. </span>Here goes the question</h1>
</header>
And answers are stored in here:
<ul class="answers">
<li><label><span><input id="answer_0" name="answer[]" type="radio" value="0">Answer 1</span></label></li>
<li><label><span><input id="answer_1" name="answer[]" type="radio" value="1">Answer 2</span></label></li>
<li><label><span><input id="answer_2" name="answer[]" type="radio" value="2">Anwser 3</span></label></li>
<li><label><span><input id="answer_3" name="answer[]" type="radio" value="3">Answer 4</span></label></li>
</ul></fieldset></form></div>
And, there are 15 questions like this.
How can automatically fill my form?
Thanks in advance
Francesco