http://www.perlmonks.org?node_id=1015445


in reply to Re: Slow WWW::Mechanize->get
in thread Slow WWW::Mechanize->get

Dear roboticus, I just recognized the right question to ask: How can I print/see/dump/compare WWW::Mechanize's and Firefox's user agent strings set to the site.

Replies are listed 'Best First'.
Re^3: Slow WWW::Mechanize->get
by roboticus (Chancellor) on Jan 26, 2013 at 02:17 UTC

    From the docs:

    $mech->agent_alias('Windows Mozilla') is probably sufficient. You can use $mech->known_agent_aliases() to get a list of the agent aliases built into WWW::Mechanize.

    ...roboticus

    When your only tool is a hammer, all problems look like your thumb.

      Oh, this i tried... And more complex variations too, like: verify_hostname => 0,noproxy => 0,cookie_jar=>{'ASP.NET_SessionId'=>'ihbh5neysr4cxybrgsskbm45'},agent=>"Mozilla/5.0 (X11; Linux x86_64; rv:18.0) Gecko/20100101 Firefox/18.0" and other possible parameters.
Re^3: Slow WWW::Mechanize->get
by Anonymous Monk on Jan 26, 2013 at 01:49 UTC
    read the docs :) ->res->headers->as_string
      Thanks. However to understand the difference between WWW::Mechanize and Firefox i need the headers before get( $start_page ). The $mech->res->headers->as_string is not defined there. Sorry, if i misunderstood your reply.