use WWW::Mechanize;

my $mech = WWW::Mechanize->new;

$mech->get( $url );
say $mech->text;

How could I get the same result with Mojo::UserAgent?
I tried this, but it doesn't return the same:

use Mojo::UserAgent;

my $ua = Mojo::UserAgent->new;

say $ua->get( $url )->res->dom->all_text;
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Simply repeat what method text does: see as_text in HTML::Element.

link|improve this answer
feedback

You can try

$ua->get( $url )->res->dom->all_text(0);

for untrimmed output. Or you may need some kind of traversal over child nodes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.