Tagged Questions

9
votes
7answers
1k views

Is there a PHP equivalent of Perl’s WWW::Mechanize?

I'm looking for a library that has functionality similar to Perl's WWW::Mechanize, but for PHP. Basically, it should allow me to submit HTTP GET and POST requests with a simple syn …
2
votes
2answers
168 views

Transparently Handling GZip Encoded content with WWW::Mechanize

Hi, I am using WWW::Mechanize and currently handling HTTP responses with the 'Content-Encoding: gzip' header in my code by first checking the response headers and then using IO::U …
2
votes
1answer
426 views

Python: how to dump cookies of a mechanize.Browser instance?

I am learning mechanize. mechanize is a python module to automate web browsing. One of its features is automated handling of cookies. I would like a hint about the way to dump the …
1
vote
3answers
149 views

How do I get WWW::Mechanize to work?

This script: use strict; use warnings; use WWW::Mechanize; my $mech = WWW::Mechanize->new( autocheck => 1 ); $mech->get( "http://www.google.com" ); print $mech->cont …
0
votes
1answer
71 views

How can I select a random listbox item with WWW::Mechanize?

With Perl's WWW::Mechanize module, I want to select a random value from a select box. How can I do this? With dump_forms I can dump select box values, but how can I get them in an …
0
votes
2answers
132 views

How do I configure WWW::Mechanize to work through a proxy?

I sit behind a proxy and have HTTP and WWW::Mechanize working OK locally. But advice || pointers as to how to get through a proxy please. Regards Ian
0
votes
1answer
224 views

WWW::Mechanize and “HTTP::Message content must be bytes at…”

I'm writing simple program which has to change some data on Polish auction site. One of the steps involves loading edit page, changing one value, and submitting it. Sample page c …
0
votes
2answers
612 views

Iconv::IllegalSequence when using www::mechanize

I'm trying to do a little bit of webscraping, but the WWW:Mechanize gem doesn't seem to like the encoding and crashes :-/ The post request results in a 302 redirect (which mechaniz …