in reply to Re^2: Getting a form filler to work for letssingit.com
in thread Getting a form filler to work for letssingit.com

Hi. Thanks for the updated code I have one last question.

I need to know what's on the page now so I'm trying to do a page dump using $mech->uri() but it's printing out a URL instead of the HTML and all that. What do I use to get the page to load?

  • Comment on Re^3: Getting a form filler to work for letssingit.com

Replies are listed 'Best First'.
Re^4: Getting a form filler to work for letssingit.com
by moot (Chaplain) on Apr 13, 2005 at 03:15 UTC
    That's what $mech->uri() does. Perhaps you need to read the WWW::Mechanize documentation a bit more carefully?
      I did go back and read it but now it tosses itself into an enless loop! I feel bad for my webhost about now :(
      my @test = $mech->content(); foreach (@test) { print "$_\n"; }
      Without this code it loads nothing but it shows a white page. Using this code reloads MY page a hundred and fifty million times. It doesn't print the content of their page at all.