Hello!
This is a repost of a problem that I just can get straightened out. I am trying write a Perl script to log into my router and open and close ports. I am able to log and and move around. I and able to retrieve data like IP address etc. But not able to check a checkbox or uncheck a checkbox. There are no errors, it just doesn't seem to update the checkboxes. As you can see from the code I have tried a few different things, without any luck though.
I think that this is the HTML that I am working with.
<td width="10%" align="center"><input type="checkbox" name="EnBt0" val
+ue="checkbox" CHECKED > </td>
Can anyone help?
Thanks.
#!/usr/bin/perl
use strict;
use warnings;
use WWW::Mechanize;
my $url='http://192.168.0.1/WanService.html';
my $lo_url='http://192.168.0.1/logout.html';
my $mech = WWW::Mechanize->new( utocheck => 1 );
$mech->credentials(
'192.168.0.1:80',
'FVS318',
'admin' => 'secret'
);
# And then $mech->get() the same as in the LWP::UserAgent code
my $response = $mech->get($url);
die "Error at $url\n ", $response->status_line, "\n Aborting" unless $
+response->is_success;
print "SUCCESS data type: ", $response->content_type, "\n\n";
#print "\n\n";
#print $response->content;
$mech->tick('EnBt3', 'checkbox', 'CHECKED');
#$mech->current_form->POST( submit => { name => "Apply ", value =>"sub
+mit" } );
#$mech->click_button(number => 2);
#$mech->submit();
#$mech->submit();
$mech->success or die "post failed: ",
$mech->response->status_line;
my $lo_response = $mech->get($lo_url);
die "Error at $lo_url\n ", $lo_response->status_line, "\n Aborting" un
+less $lo_response->is_success;
print "\n\nDone.\n\n";
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|