フォームがあり、テストのために、各グループのすべてのフィールドをランダムに自動的に入力するボタンが必要です。チェックボックスとラジオは、各グループ タイプの取引からランダムに 1 つを選択するだけです。ほとんどのフォームは非常に大きく、テスト目的で常に項目を選択するのは大変です。
フォームの例は次のとおりです。
<div class="rows"><b>Education</b><br>
<select name="edu" id="edu" validate="required:true"><option value="">Select One</option>
<option value="Some High School">Some High School</option>
<option value="High School graduate">High School graduate</option>
<option value="Some college">Some college</option>
<option value="College graduate">College graduate</option>
<option value="Master’s degree">Master’s degree</option>
<option value="Doctorate">Doctorate</option>
</select></div>
<div class="rows"><b>Payor status</b><br>
<select name="payor" id="payor" validate="required:true"><option value="">Select One</option>
<option value="Medicare/Medicaid">Medicare/Medicaid</option>
<option value="Insurance">Insurance</option>
<option value="Self Pay">Self Pay</option>
</select></div><br>
<div class="rows"><b>I am a physician.</b><br>
<input type="hidden" name="type33-8" value="YN">
<label><input type="radio" name="33-8" id="33Y" value="Yes" validate="required:true"> Yes</label>
<label><input type="radio" name="33-8" id="33N" value="No"> No</label><br>
<label for="33-8" class="error">Please select an option</label></div><b>This doctor:</b><br>
<input type="hidden" name="type34" value="6PMultiple">
<div class="rows"><label>1. Appears sincere.</label><br>
<input type="hidden" name="type34-247" value="6PMultiple">
<label><input type="radio" name="34-247" id="341" value="1" validate="required:true" > 1 - Very Strongly Disagree</label>
<label><input type="radio" name="34-247" id="342" value="2" > 2 - Strongly Disagree</label>
<label><input type="radio" name="34-247" id="343" value="3" > 3 - Disagree</label>
<label><input type="radio" name="34-247" id="344" value="4" > 4 - Agree</label>
<label><input type="radio" name="34-247" id="345" value="5" > 5 - Strongly Agree</label>
<label><input type="radio" name="34-247" id="346" value="6" > 6 - Very Strongly Agree</label></div>
<div class="rows"><label>2. Is professional.</label><br>
<input type="hidden" name="type34-248" value="6PMultiple">
<label><input type="radio" name="34-248" id="341" value="1" validate="required:true" > 1 - Very Strongly Disagree</label>
<label><input type="radio" name="34-248" id="342" value="2" > 2 - Strongly Disagree</label>
<label><input type="radio" name="34-248" id="343" value="3" > 3 - Disagree</label>
<label><input type="radio" name="34-248" id="344" value="4" > 4 - Agree</label>
<label><input type="radio" name="34-248" id="345" value="5" > 5 - Strongly Agree</label>
<label><input type="radio" name="34-248" id="346" value="6" > 6 - Very Strongly Agree</label></div>
<div class="rows"><label>3. Speaks clearly.</label><br>
<input type="hidden" name="type34-249" value="6PMultiple">
<label><input type="radio" name="34-249" id="341" value="1" validate="required:true" > 1 - Very Strongly Disagree</label>
<label><input type="radio" name="34-249" id="342" value="2" > 2 - Strongly Disagree</label>
<label><input type="radio" name="34-249" id="343" value="3" > 3 - Disagree</label>
<label><input type="radio" name="34-249" id="344" value="4" > 4 - Agree</label>
<label><input type="radio" name="34-249" id="345" value="5" > 5 - Strongly Agree</label>
<label><input type="radio" name="34-249" id="346" value="6" > 6 - Very Strongly Agree</label></div>
私はすべてのフォーム要素を実行することを考えていました:
for ( var i=0; i < document.form1.elements.length; i++ ) {
if ( document.form1.elements[i].type == "radio" ) {
//Something
}
}
私の問題は、選択ドロップダウンでは機能するすべての要素を通過することです(ドロップダウンオプションの1つをランダムに選択する方法はわかりませんが)が、ラジオの名前グループでは機能しません。
ドロップダウンオプションを選択するには、これを実行できると思っていました:
Math.random() * (max - min) + min
返された整数を使用してオプションをランダムに選択するオプション数を取得した後、ラジオの問題で立ち往生しているためテストしていないため、それがまだ機能するかどうかはわかりません。