I have a web form that I have to fill in from the "Chrome" console. In the text boxes I have no problems. Use for example:
txtNombre.value='nombre';
But in the list boxes of select
I do not know how I can select an option from the console. How would it be in this case?
this is the code:
<tr>
<td>Gender</td>
<td>
<div class="select2-container" id="s2id_ContentPlaceHolder1_personDetails_genderDropDownList">
<a href="javascript:void(0)" class="select2-choice select2-default select2-required" tabindex="-1">
<span class="select2-chosen" id="select2-chosen-2">Select an Option</span>
<abbr class="select2-search-choice-close"></abbr> <span class="select2-arrow" role="presentation">
<b role="presentation"></b></span></a><label for="s2id_autogen2" class="select2-offscreen"></label>
<input class="select2-focusser select2-offscreen" type="text" aria-haspopup="true" role="button" aria-labelledby="select2-chosen-2" id="s2id_autogen2" tabindex="0"></div>
<select name="_ctl0:ContentPlaceHolder1:personDetails:genderDropDownList" id="ContentPlaceHolder1_personDetails_genderDropDownList" onchange="nzis.UpdateDropdownErrorLabel(this)" errorlabel="mandatory" tabindex="-1" title="" style="display: none;">
<option selected="selected" value=""></option>
<option value="M">Male</option>
<option value="F">Female</option>
</select>
</td>
</tr>
from the chrome console you should be able to put the Male option in the Gender box.