2014-11-03 31 views
1

我试图自动化的消息在吼吼箱发送:提交Web表单与斜纹不适用?

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

,当我使用此代码的每一件事,做工精细(无误差),但消息没有发送(submited)

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') 

任何想法?

回答

1

尝试

submit(url) 

当您按下提交按钮,你将被重定向回同一页面,你以前阅读的源代码?