At this moment, I am struck at another point. I am screen scraping a GUI.
This is the code I have till now.
#!/usr/bin/perl
use strict;
use warnings;
use LWP::UserAgent;
my $url='file:///C:/Program%20Files/abcde/index.html';
my $obj = LWP::UserAgent->new;
$obj->credentials(
'192.0.0.0',
'12345',
'admin' => 'admin'
);
my $resp = $obj->get($url);
print "SUCCESS ", $resp->content, "\n\n";
I need to navigate to the middle of the menu. Is it possible to do that in Perl?
Thanks,
Anusha