Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re^4: screen scraping MECHANIZE

by garskoci (Novice)
on Feb 05, 2005 at 15:41 UTC ( [id://428332]=note: print w/replies, xml ) Need Help??


in reply to Re^3: screen scraping MECHANIZE
in thread screen scraping MECHANIZE

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re^5: screen scraping MECHANIZE
by Limbic~Region (Chancellor) on Feb 05, 2005 at 16:45 UTC
    garskoci,
    I'm not familiar with the READMORE tags. Sorry

    I replied with the link that is at the bottom of every single post you make when you are previewing that explains READMORE tags. You should go back and edit your post with READMORE tags.

    You failed to mention that the page made extensive use of JavaScript. Notice the "Apply " button - onClick="toApply(document.Wanblock) The WWW::Mechanize FAQ would have told you that it is a client that doesn't understand JavaScript. When you try it in a regular browser, does it work with JavaScript turned off? I suspect not. The following code would work if JavaScript wasn't involved:

    #!/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 ); $mech->tick('EnBt3', '1'); $mech->click_button( value => "Apply " );
    If that doesn't work for your definition of work, then you will need to find a different approach.

    Cheers - L~R

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://428332]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (3)
As of 2024-04-26 04:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found