提交Twill的网络表单不适用?

时间:2014-11-03 15:51:32

标签: python-2.7 twill

我正在尝试在shoutbox上自动发送消息:

http://www.i-tchat.com/shoutbox/shoutbox.php?idShoutbox=116303

当我使用此代码时,每件事情都可以正常工作(没有错误),但邮件不发送(提交)

from twill.commands import *

url='http://www.i-tchat.com/shoutbox/shoutbox.php?idShoutbox=116303'
user= 'Toto'
mess="Test message"

go(url)
formclear('1')
fv("1", "username", user)
fv("1", "message", mess)
showforms()
submit('0')

任何想法?

0 个答案:

没有答案