0

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

1 回答 1

0

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

br.submit()
于 2013-04-02T08:19:21.663 回答