Mechanize

Hi,

I am using mechanize library to do automated form posting. Unfortunately
it
doesn’t seem to work for only gumtree.
Below is the snippet of code that I am using. xxxxx represent the
acutual
post id and ziz value. Similar code works for other web applications
only
gumtree fails. Is it because, the form has a file upload control in it
?

require ‘mechanize’
agent = WWW::Mechanize.new
agent.user_agent_alias = ‘Windows IE 6’
page = agent.get("
Gumtree | Free classified ads from the #1 classifieds site in the UK")

form = page.forms.with.name(“email_friend”).first

form.from_email = ‘[email protected]
form.message = “direct http post from code”
results = agent.submit(form)

Thanks
Manjo

Hi Manjo,

On Thu, Mar 15, 2007 at 10:01:25PM +0900, Manoj P M wrote:

Hi,

I am using mechanize library to do automated form posting. Unfortunately it
doesn’t seem to work for only gumtree.
Below is the snippet of code that I am using. xxxxx represent the acutual
post id and ziz value. Similar code works for other web applications only
gumtree fails. Is it because, the form has a file upload control in it ?

How exactly do you know it is failing? Can you be more specific?

Also, you may want to send this message to the mechanize users list:

[email protected]

Thanks!

m facing the execution timeout issue with myspace the code is working
fine on console but once you embed the code into my application its
shwing execution time out.