如何单击按钮并使用 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'