如何点击按钮并选中带有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'
答案 0 :(得分:0)
您的按钮不是标准的提交按钮,因此它可能触发一些javascript
,您必须模拟它。如果此“点击”触发提交,您可以尝试:
br.submit()