Tagged Questions

7
votes
4answers
645 views

How can I access forms without a name or id with Perl's WWW::Mechanize?

I am having problems with my Perl program. This program logs in to a specific web page and fills up the text area for the message and an input box for mobile numbers. Upon clicking the 'Send' button, ...
6
votes
1answer
86 views

Incorrect filename on WWW::Mechanize submission

As far as I can read from the WWW::Mechanize documentation, you can do the following to submit a file from a string: $mech->submit_form( fields => { 'UploadedFile' => [[ undef, ...
5
votes
1answer
221 views

How can I test a Dancer application with Test::WWW::Mechanize::PSGI?

I'm not sure on the right way to set up the script app for www mechanize. I did try at least one alternate that works, however I'm trying to pass in configuration with the test so I can make logging ...
5
votes
3answers
1k views

How do I use Perl's LWP to log in to a web application?

I would like to write a script to login to a web application and then move to other parts of the application: use HTTP::Request::Common qw(POST); use LWP::UserAgent; use Data::Dumper; $ua = ...
3
votes
1answer
83 views

Perl Mechanize - how to make a script running faster with less overhead

Problem: I have a list of 2500 websites and need to grab a thumbnail screenshot of them. How do I do that? I could try to parse the sites either with Perl.- Mechanize would be a good thing. Note: i ...
3
votes
3answers
97 views

WWW::Mechanize text field issue

I'm trying to submit a form by post method using WWW::Mechanize perl module. use WWW::Mechanize; my $mech = WWW::Mechanize->new(); ... $mech->get($url); ... my $response = ...
3
votes
5answers
307 views

Perl : Unexpected behavior with website scraping

I'm using WWW::Mechanize and HTML::TokeParser to parse a website for updates. I cannot give any details on the website because it requires a login. The website essentially has a table of data. I'm ...
3
votes
2answers
333 views

perl WWW::Mechanize, link redirect problem

I use WWW::Mechanize::Shell to test stuff. my code is this: #!/usr/bin/perl use WWW::Mechanize; use HTTP::Cookies; my $url = "http://mysite/app/login.jsp"; my $username = "username"; my $password ...
3
votes
2answers
211 views

Mechanize Basic Questions

I am working with this website: http://bioinfo.uni-plovdiv.bg/microinspector/ And from the mech-dump, I get POST http://bioinfo.uni-plovdiv.bg/microinspector/cgi/result-new1.plx target_name= ...
3
votes
1answer
314 views

How do I use WWW::Mechanize to check a radio box?

I am writing a Perl script to test certain parts of my webpage as I make changes to it. Using the WWW::Mechanize class, how can I select a radio box and submit a form?
3
votes
2answers
320 views

How can I recover from a timeout with Perl's WWW::Mechanize?

I'm using WWW::Nechanize to read a particular webpage in a loop that runs every few seconds. Occasionally, the 'GET' times out and the script stops running. How can I recover from one such timeout ...
3
votes
2answers
184 views

Saving a file with WWW::Selenium

Im trying to download a file with perl's WWW::Selenium. I get a popup box asking me if I want to save/open the file. I want to manipulate it and say 'save' at some given location. Im not sure how this ...
3
votes
3answers
584 views

How can I download link targets from a web site using Perl?

I just made a script to grab links from a website, and in turn saves them into a text file. Now I'm working on my regexes so it will grab links which contains php?dl= in the url from the text file: ...
3
votes
4answers
971 views

How can I get WWW-Mechanize to login to Wells Fargo's website?

I am trying to use Perl's WWW::Mechanize to login to my bank and pull transaction information. After logging in through a browser to my bank (Wells Fargo), it briefly displays a temporary web page ...
3
votes
3answers
143 views

What is the preferred method of accessing WWW::Mechanize responses?

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( ...
3
votes
1answer
691 views

WWW::Mechanize Perl login only works after relaunch

I'm trying to login automatically in a website using Perl with WWW::Mechanize. What I do is: $bot = WWW::Mechanize->new(); $bot->cookie_jar( HTTP::Cookies->new( file ...
3
votes
2answers
186 views

How can I extract all links from the page excluding one using Perl's WWW::Mechanize?

I'm trying to use WWW::Mechanize to extract some links from the HTML page using find_all_links() method. It supports matching on these criterias: text text_regex url url_regex ...
3
votes
2answers
805 views

How can I get the frame source with Perl's WWW::Mechanize?

Using WWW::Mechanize::Firefox, I can get the source of the page I visited. However, if the page contains a frame, I get the frame tag and not the actual source of the page that is loaded. ...
3
votes
2answers
2k views

How do I download a file with WWW::Mechanize after it submits a form?

I have the code: #!/usr/bin/perl use strict; use WWW::Mechanize; my $url = 'http://divxsubtitles.net/page_subtitleinformation.php?ID=111292'; my $m = WWW::Mechanize->new(autocheck => 1); ...
3
votes
3answers
2k views

How do I use and debug WWW::Mechanize?

I am very new to Perl and i am learning on the fly while i try to automate some projects for work. So far its has been a lot of fun. I am working on generating a report for a customer. I can get this ...
3
votes
2answers
960 views

Transparently Handling GZip Encoded content with WWW::Mechanize

I am using WWW::Mechanize and currently handling HTTP responses with the 'Content-Encoding: gzip' header in my code by first checking the response headers and then using IO::Uncompress::Gunzip to get ...
2
votes
1answer
288 views

Passing mechanized browser to subroutine (Perl with WWW::Mechanized)

I am still learning Perl so apologies on lack of technical term knowledge and general newbie-ness. I am trying to write a script to log into my course works account and download all the files. I can ...
2
votes
2answers
344 views

Website log-in with Perl and Mechanize

So this is driving me crazy. Basically, when I hard-code my user name and password, I can log-in no problem. But I want to prompt the user to enter the username and password, as I would like to share ...
2
votes
2answers
651 views

WWW::Mechanize->get giving error (HTTPS not supported)

I am trying to use WWW::Mechanize to login to Yahoo. However, when I try to get the login page, it gives the error Error GETing https://login.yahoo.com/config/login_verify2?&.src=ym: Protocol ...
2
votes
2answers
481 views

Why does WWW::Mechanize GET certain pages but not others?

I'm new to Perl/HTML things. I'm trying to use $mech->get($url) to get something from a periodic table on http://en.wikipedia.org/wiki/Periodic_table but it kept returning error message like this: ...
2
votes
2answers
379 views

Visit Half Million Pages with Perl

Currently I'm using Mechanize and the get() method to get each site, and check with content() method each mainpage for something. I have a very fast computer + 10Mbit connection, and still, it took 9 ...
2
votes
3answers
193 views

How can I make WWW:Mechanize to not fetch pages twice?

I have a web scraping application, written in OO Perl. There's single WWW::Mechanize object used in the app. How can I make it to not fetch the same URL twice, i.e. make the second get() with the same ...
2
votes
6answers
1k views

How can I download a file using WWW::Mechanize or any Perl module?

Is there a way in WWW::Mechanize or any Perl module to read on a file after accessing a website. For example, I clicked a button 'Receive', and a file (.txt) will appear containing a message. How will ...
2
votes
3answers
894 views

Why can't WWW::Mechanize::Firefox locate it's “new” method?

I get the following error when I run the little sample script: Can't locate object method "new" via package "WWW::Mechanize::Firefox" (perhaps you forgot to load "WWW::Mechanize::Firefox"?) at ...
2
votes
2answers
434 views

How can I add a progress bar to WWW::Mechanize?

I have the following code: $mech->get($someurl, ":content_file" => "$i.flv"); So I'm getting the contents of a url and saving it as an flv file. I'd like to print out every second or so how ...
1
vote
1answer
130 views

WWW::Mechanize and wide character warning

When I trying to download some HTML file with the code below: $mech->get($link) $mech->save_content("file.html"); I get the warning: Wide character in print at ...
1
vote
5answers
185 views

Website button click - Perl WWW::Mechanize

I try to use the perl script to automate the interaction with a website. I use module WWW::Mechanize to realize my design. But I cannot perform the button click in my perl script by using command as ...
1
vote
2answers
298 views

WWW::Mechanize and strawberry perl

When I try to install WWW::Mechanize distribution from CPAN with strawberry perl ( v5.10.1) on windows 7 I get the below failure ? cpan> install JESSE/WWW-Mechanize-1.70.tar.gz Running make for ...
1
vote
2answers
224 views

Can't create an instance of WWW:Mechanize::Firefox

I've just installed WWW:Mechanize::Firefox, but when I tried to create an instance of this "class": my $mech = WWW::Mechanize::Firefox->new(); I get this error: Failed to connect to , ...
1
vote
1answer
139 views

How to web scrape a .aspx Web page in Perl

i'm trying to create an script that automates the logging in to a website that seems to have some embedded VBscript and Javascript and I am wondering how I can create an auto-login script with ...
1
vote
1answer
69 views

Getting input by name and not by index

HTML snippet: <input type='hidden' name='id' value='default' /> I'm using WWW::Mechanize to fill in a form, an input of which is above. I'm doing this: $inputs[0]->value("nondefault"); ...
1
vote
1answer
80 views

WWW::Mechanize::Cached - question

When I use WWW::Mechanize::Cached with default values all works fine. #!/usr/bin/env perl use warnings; use 5.012; use WWW::Mechanize::Cached; my $uri = 'http://www.some_address'; my $mech = ...
1
vote
1answer
145 views

What is the reason for the error message `Can't locate object method “get_ok”` when using WWW::Mechanize::TreeBuilder?

I couldn't really figure out how to use WWW::Mechanize::TreeBuilder. Basically I get a HTML page using WWW::Mechanize. There is a //div[@class='cars'] whose text I want to extract. I tried: my $mech ...
1
vote
1answer
535 views

WWW:Mechanize Form Select

I am attempting to login to Youtube with WWW:Mechanize and use forms() to print out all the forms on the page after logging in. My script is logging in successfully, and also successfully navigating ...
1
vote
1answer
546 views

Mechanize example - quiete simple but too complex for me: need explanations

Good day dear community. I am new to programming. And i want to digg deeper into Perl. So i have a Mechanize example - quiete simple but too complex for me: need explanations. I need your help here ...
1
vote
1answer
280 views

Why can't WWW::Mechanize find the right form?

I'm using WWW::Mechanize to retrieve a form from a webpage: #!/usr/bin/perl use WWW::Mechanize; my $mechanize = WWW::Mechanize->new(); $mechanize->proxy(['http', 'ftp'], 'http://proxy/'); ...
1
vote
1answer
509 views

extract all links from a HTML page, exclude links from a specific table

I'm pretty new to Perl/HTML. Here is what I'm trying to do with WWW::Mechanize and HTML::TreeBuilder: For each chemical element page on Wikipedia, I need to extract all hyperlinks that point to the ...
1
vote
2answers
324 views

How can I get links that match a regex using WWW::Mechanize?

I'm trying to use regular expressions to catch a link, but can not. I have all the links, but there are many links that do not want. What I do is to grab all links: ...
1
vote
3answers
181 views

How can I get the contents of a followed link in WWW::Mechanize?

This is my last question for this I hope. I am using $mech->follow_link to try to download a file. For some reason though the file saved is just the page I first pull up and not the link I want to ...
1
vote
1answer
84 views

Trouble with downloading files

I am trying to download a file from a site using perl. I chose not to use wget so that I can learn how to do it this way. I am not sure if my page is not connecting or if something is wrong in my ...
1
vote
1answer
239 views

WWW::Mechanize::Plugin::Display - Always open a new window

How can I configure WWW::Mechanize::Plugin::Display, so that the plug-in always opens a new window and not only a new tab?
1
vote
3answers
854 views

Why am I getting a new session ID on every page fetch in my Perl WWW::Mechanize script?

So I'm scraping a site that I have access to via HTTPS, I can login and start the process but each time I hit a new page (URL) the cookie Session Id changes. How do I keep the logged in Cookie Session ...
1
vote
2answers
556 views

Why does my WWW::Mechanize program time-out when it tries to login?

The site I was screen scraping (Which I have creds for) recently changed their server and blocked port 80. I thought I could just use port 443 for https but I get an timeout error now. I'm just ...
1
vote
2answers
265 views

Why does WWW::Mechanize and login-data break when I switch from a query string to a hash?

The following script works fine: #!/usr/bin/env perl use strict; use warnings; use Data::Dumper; use WWW::Mechanize; my $loginData = ...
1
vote
3answers
611 views

How do I get WWW::Mechanize to work?

This script: use strict; use warnings; use WWW::Mechanize; my $mech = WWW::Mechanize->new( autocheck => 1 ); $mech->get( "http://www.google.com" ); print $mech->content; Produces this ...

1 2