mechanize python click a button

非 Y 不嫁゛ 提交于 2019-11-26 08:34:59

问题


I have a form with <input type=\"button\" name=\"submit\" /> button and would like to be able to click it.

I have tried mech.form.click(\"submit\") but that gives the following error:

ControlNotFoundError: no control matching kind \'clickable\', id \'submit\'

mech.submit() also doesn\'t work since its type is button and not submit.

Any ideas? Thanks.


回答1:


clicking a type="button" in a pure html form does nothing. For it to do anything, there must be javascript involved.

And mechanize doesn't run javascript.

So your options are:

  • Read the javascript yourself and simulate with mechanize what it would be doing
  • Use spidermonkey to run the javascript code

I'd do the first one, since using spidermonkey seems hard and probably not worth it.



来源:https://stackoverflow.com/questions/1806238/mechanize-python-click-a-button

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!