-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello All
im making some script with mechanize.browser module.
one of problem is all other thing is ok, but when submit() form,it not working,
so i was found some suspicion source part.
in the html source i was found such like following.
<form method="post" onsubmit="return loginCheck(this)"…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I'm trying to get a page with an ISO-8859-1 encoding clicking on a link, so the code is similar to this:
page_result = page.link_with( :text => 'link_text' ).click
So far I get the result with a wrong encoding, so I see characters like:
'T?tulo:' instead of 'Título:'
I've tried several…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello! Are both of these versions OK or is one of them to prefer?
#!/usr/bin/env perl
use strict;
use warnings;
use WWW::Mechanize;
my $mech = WWW::Mechanize->new();
my $content;
# 1
$mech->get( 'http://www.kernel.org' );
$content = $mech->content;
say $content;
# 2
my $res = $mech->get(…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
mechanize's Browser class is great and it's follow_link() function is great too. But what to do with this kind of links:
<a href="http://example.com"><img src="…"></a>
Is there any way to follow such links? The text attribute of this type of links is simply '[IMG]', so AFAIK,…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
I'm trying to login automatically in a website using Perl WWW::Mechanize.
What I do is:
$bot = WWW::Mechanize->new();
$bot->cookie_jar(
HTTP::Cookies->new(
file => "cookies.txt",
autosave => 1,
ignore_discard =>…
>>> More