1

I am trying to automate the sending of a message on a shoutbox :

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

When i'm using this code every thing work fine (without error) but the message is not send (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')

Any Idea ?

1 Answer 1

1

try

submit(url)

when you press the submit button you are redirected back to the same page, have you read the source code before?

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.