如何按下按钮并单击复选框

时间:2013-02-01 08:08:23

标签: python-2.6 mechanize-python

如何点击按钮并选中带有mechanize python的复选框... HTML代码:

<input type="button" id="btn_t" style="width:120px;float:left;margin:10px;margin-top:2px;" value="Apply" disabled="">

我试过:

br.click(id ="btn_t")

但这会引发错误:

mechanize._form.ControlNotFoundError: no control matching kind 'clickable', id '
btn_t'

1 个答案:

答案 0 :(得分:0)

您的按钮不是标准的提交按钮,因此它可能触发一些javascript,您必须模拟它。如果此“点击”触发提交,您可以尝试:

br.submit()