The following gets at the content of images displayed on a page:
#!perl
use strict;
use warnings;
use 5.012;
use WWW::Mechanize::Chrome;
use Log::Log4perl ':easy';
Log::Log4perl->easy_init($TRACE);
use File::Temp 'tempdir';
use Cwd;
my $tempdir = tempdir();
my $mech = WWW::Mechanize::Chrome->new(
headless => 1,
data_directory => $tempdir,
download_directory => cwd(),
);
use Data::Dumper;
my $res = $mech->get('https://egp.rutgers.edu/cgi/wmc.pl');
say Dumper $mech->getResourceTree_future()->get;
my $link = $mech->xpath( '//a[text()="MY IMAGE"]', single => 1 );
$mech->click($link);
$mech->sleep(1);
my $resources = $mech->getResourceTree_future()->get;
my @images = grep { $_->{type} eq 'Image' } @{$resources->{resources}}
+;
my $image = $mech->getResourceContent_future( $images[0]->{url} )->get
+->{content};
open my $fh, '>:raw', 'test.jpg';
print $fh $image;
Note that you will need a way to find which image is the one you want.
-
Are you posting in the right place? Check out Where do I post X? to know for sure.
-
Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
<code> <a> <b> <big>
<blockquote> <br /> <dd>
<dl> <dt> <em> <font>
<h1> <h2> <h3> <h4>
<h5> <h6> <hr /> <i>
<li> <nbsp> <ol> <p>
<small> <strike> <strong>
<sub> <sup> <table>
<td> <th> <tr> <tt>
<u> <ul>
-
Snippets of code should be wrapped in
<code> tags not
<pre> tags. In fact, <pre>
tags should generally be avoided. If they must
be used, extreme care should be
taken to ensure that their contents do not
have long lines (<70 chars), in order to prevent
horizontal scrolling (and possible janitor
intervention).
-
Want more info? How to link
or How to display code and escape characters
are good places to start.
|