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("
http://www.gumtree.com/cgi-bin/email_poster.pl?posting_id=xxxxx&ziz=xxxxx")

form = page.forms.with.name("email_friend").first

form.from_email = 'xyz@gmail.com'
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:

  mechanize-users@rubyforge.org

Thanks!

--
Aaron Patterson
http://tenderlovemaking.com/

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.

···

--
Posted via http://www.ruby-forum.com/.