Python机械化表单提交不起作用

时间:2014-10-08 17:54:38

标签: python web-scraping mechanize mechanize-python

我正在尝试编写一个简单的机器人,可以在页面上登录我的帐户然后评论其他用户'图片。但是,我无法正确提交评论表单。评论表格如下:

<form id="comment-form" action="#" onsubmit="postComment($(this).serialize(),'image',117885,229227); return false;">
    <input class="comment" type="text" size="40" name="comment" id="comment" />
    <input type="hidden" name="commentObj" value="9234785" />
    <input type="hidden" name="commentMode" value="image" />
    <input type="hidden" name="userid" value="12427" />
    <input class="submit" type="submit" value="Comment" />
</form>

我的代码如下

br.select_form(nr = 1)
br.form['comment'] = 'hello'
br.submit()

页面有两种形式,评论表格是第二种。所以我相信我选择了正确的表格。谁能解释为什么这不起作用?

2 个答案:

答案 0 :(得分:3)

在表单提交时正在执行javascript代码:

onsubmit="postComment($(this).serialize(),'image',117885,229227); return false;"

mechanize根本无法处理,因为它不是浏览器,并且内部没有javascript引擎。

可能的解决方案:

  • 高级方法 - 通过selenium webdriver使用真实浏览器并自动执行使用操作 - 将密钥发送到输入,单击提交按钮等。示例代码:

    from selenium import webdriver
    
    driver = webdriver.Firefox()
    dirver.get('my_url_here')
    
    comment = driver.find_element_by_id('comment')
    comment.send_keys('hello')
    comment.submit()  # this would find an enclosing form and submit it
    
  • 研究在触发表单提交事件时发送到服务器的请求是什么。然后,使用例如requests

  • 自动化请求

希望有所帮助。

答案 1 :(得分:0)

如果我理解得很好,你必须尝试使用​​这个改变的代码

br.select_form(nr = 1)
br['comment'] = 'hello'
br.submit()