Tagged Questions

15
votes
9answers
5k 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 syntax, and then parse ...
3
votes
2answers
202 views

Mechanize Basic Questions

I am working with this website: http://bioinfo.uni-plovdiv.bg/microinspector/ And from the mech-dump, I get POST http://bioinfo.uni-plovdiv.bg/microinspector/cgi/result-new1.plx target_name= ...
2
votes
3answers
867 views

Why can't WWW::Mechanize::Firefox locate it's “new” method?

I get the following error when I run the little sample script: Can't locate object method "new" via package "WWW::Mechanize::Firefox" (perhaps you forgot to load "WWW::Mechanize::Firefox"?) at ...
0
votes
1answer
102 views

WWW::Mechanize and yellowpages.com

I'm trying to search yellowpages.com via the Perl module WWW::Mechanize. $mech->get( "http://www.yellowpages.com" ); $mech->form_name( "standard-searchform" ); $mech->field( "search-terms, ...
0
votes
1answer
359 views

Perl WWW::Mechanize JSESSION issue

I am having a problem getting/staying logged in with perl mechanize to https://psmsadmin.vzw.com/vzwcampaignadmin/ Looking at the headers, it appears that the JSESSIONID keeps changing. I am using a ...
0
votes
1answer
282 views

Perl MozRepl cleanup problem

I'm coding a web crawler and I've been using WWW::Mechanize::Firefox to navigate some pages (for the others I use WWW::Mechanize) which keep loading content after the page loaded and I've never had an ...