我必须使用我已经知道的正确序列多次在网站retailedge.intel.com(不是我的)内填写表格。
例如:
for the first question the right replay is D for the second question is D for the third D (again :)) for the forth D (is boring, i know) for the fifth B (finally something new ;))
- 如下图所示。
当我进入表单/问题页面时,Greasemonkey会自动设置具有正确顺序的页面,因此我必须做的唯一事情就是点击最后的“发送”按钮:D
我的意思是:Greasemonkey是否有可能设置/提交页面,并且已经在正确的序列和位置上检查了单选按钮?
问题的结构如下:
<li><span id="UniqueId_Q3" class="png">
<table>
<tr><td><span class="QuestionNumber png">3.</span></td>
<td><span class="QuestionText png">This is the question text.</span></td>
</tr>
</table>
</span>
<ul>
<li><span class="InputButton">
<input type="radio" value="UniqueVal_1" name="UniqueName_3" id="UniqueId_Q3_1">
<label for="UniqueId_Q3_1"><span class="png"> a. Answer A</span></label>
</span></li>
<li><span class="InputButton">
<input type="radio" value="UniqueVal_2" name="UniqueName_3" id="UniqueId_Q3_2">
<label for="UniqueId_Q3_2"><span class="png"> b. Answer B</span></label>
</span></li>
</ul>
</li>
提前谢谢你,
特蕾莎:)
答案 0 :(得分:-1)
您必须选择表单并submit()
:
document.yourformname.submit();