roho has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl use strict; use warnings; use WWW::Mechanize::Chrome; use Log::Log4perl qw(:easy); Log::Log4perl->easy_init($ERROR); my $mech = WWW::Mechanize::Chrome->new(launch => 'C:\Program Files (x8 +6)\Google\Chrome\Application\chrome.exe'); $mech->get('https://www.google.com'); print $mech->content( format => 'text' );
"It's not how hard you work, it's how much you get done."
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Retrieve Rendered Web Page Using WWW::Mechanize::Chrome
by Corion (Patriarch) on Nov 03, 2020 at 06:53 UTC | |
by roho (Bishop) on Nov 03, 2020 at 14:28 UTC | |
by Corion (Patriarch) on Nov 03, 2020 at 14:45 UTC | |
by roho (Bishop) on Nov 03, 2020 at 15:03 UTC |