in reply to Re^2: screen scraping MECHANIZE
in thread screen scraping MECHANIZE
And paste the result here in CODE and READMORE tags. We can then create a mock up locally to do testing.#!/usr/bin/perl use strict; use warnings; use WWW::Mechanize; my $url= 'http://192.168.0.1/WanService.html'; my $mech = WWW::Mechanize->new( autocheck => 1 ); $mech->credentials( '192.168.0.1:80', 'FVS318', 'admin' => 'secret' ); $mech->get( $url ); print $mech->content();
Cheers - L~R
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: screen scraping MECHANIZE
by garskoci (Novice) on Feb 05, 2005 at 15:31 UTC | |
by Limbic~Region (Chancellor) on Feb 05, 2005 at 15:37 UTC | |
| A reply falls below the community's threshold of quality. You may see it by logging in. |