1
vote
1answer
35 views

How do I paginate using WWW::Mechanize?

I am using Windows Perl 5.16.3 in a 64 bit machine. When I use Mechanize with the following URL http://www.utsavfashion.in/indowestern everything works fine. However, when i try using the ...
1
vote
3answers
110 views

Cannot install WWW::Mechanize Under proxy

OS: Linux. Perl Version: 5.16.0 (using Perlbrew). I was trying to install Catalyst, and I got failed tests exactly as described in: ...
0
votes
1answer
24 views

Does set_visible in perl WWW:mechanize alter the page content

I am calling set_visible and the return value is non-zero. But when I print the content, it is the same as the default. Is this the intended value. Also, if I have javascript that will change another ...
4
votes
4answers
100 views

Perl - Regex to extract only the comma seperated strings

I have a question I am hoping someone could help with... I have a variable that contains the content from a webpage (scraped using WWW::Mechanize). The variable contains data such as these: $var ...
0
votes
1answer
32 views

Missing Cookies using WWW::Mechanize

I am using WWW::Mechanize to crawl a website and collect information on the Cookies being set. Here is the code I'm using: #! /usr/bin/perl use warnings; use WWW::Mechanize; use HTTP::Cookies; ...
0
votes
3answers
109 views

Perl www::mechanize

İ am very new to perl module www::mechanize and I want to functionalize snp id. For that I have to make a web crawler, but i am having difficulties . İ dont know how to use field names or how to ...
2
votes
1answer
94 views

Please help me debug an SSL issue using WWW::Mechanize (or LWP::UserAgent for that matter)

I'm using WWW::Mechanize to load the catalog from our product provider into our database. I run this script every 2 hours everyday and it completes in arround 12 minutes by using around 50 ...
0
votes
0answers
86 views

WWW::Mechanize + Coro/EV + Tk = program dies kind of randomly

I got to a point where I can't even begin to think how to solve this problem: I'm using a Tk form to ask for an URL, use WWW::Mechanize and Coro threads to fetch some images, then an other Tk windows ...
0
votes
1answer
76 views

perl www mechanize and JSON

How to submit a valid JSON request using perl mechanize module I tried use WWW::Mechanize; use JSON; my $mech=WWW::Mechanize->new( stack_depth => 10, timeout => ...
1
vote
1answer
91 views

Perl WWW:Mechanize Form fill does not work

I have some nice problems with filling out a login form with WWW::Mechanize. First, I will show you the part of the website, which unfotunatelly is in german: <form action="/login.php" ...
2
votes
2answers
138 views

How can we tell WWW::Mechanize::Firefox to not wait for a response or a postback?

Hi I am using a loop to get various pages. The code: while($stm->fetch()) { $mech->get(**#TheURL**); $mech->select( 'this', 'that' ); $mech->tick( 'this' ...
2
votes
6answers
131 views

Perl - Check if any elements in each different array matches a variable

I have a problem I am hoping someone can help with (greatly simplified for the purposes of explaining what I am trying to do)... I have three different arrays: my @array1 = ("DOG","CAT","HAMSTER"); ...
0
votes
1answer
36 views

Selecting only from a specific table on a page WWW::Mechanize and CSS Selectors?

Good day, I am scraping a number of pages that display the data I require in tables. On the page there are multiple tables with the following: <table class="dTable" cellspacing="1" ...
0
votes
2answers
67 views

Random error with WWW::Mechanize: Protocol scheme 'https' is not supported (LWP::Protocol::https not installed)

I'm working with WWW::Mechanize to slurp a products catalog from a web site into our database (Ingram Micro). Everything is over SSL. I'm receiving a random error like the following: Protocol scheme ...
0
votes
1answer
67 views

Not able to POST ASP-NET form with WWW::Mechanize or LWP::UserAgent

I need to automate the extraction of a products catalog, for which we are authorized distributors. The company is Ingram Micro and they're huge, but they don't provide a simple way (like a web ...
1
vote
1answer
31 views

Ignoring GET error of an unexisting webpage

I use WWW::Mechanize to fetch and process web pages. I have a piece of code, which looping through a list of web pages. It looks approximately like this: while (<$readFileHandle>) { ...
0
votes
2answers
74 views

WWW::Mechanize::Firefox How do you extract the text within HTML element tags?

Good Day, How do you print the text of an HTML tag with WWW::Mechanize::Firefox? I have tried: print $_->text, '/n' for $mech->selector('td.dataCell'); print $_->text(), '/n' for ...
-1
votes
1answer
85 views

How do I press a button with no name attribute with WWW::Mechanize?

This is the button I want to click: <input type="submit" value="Continue"> As you see it has no name at all to specify the order on it. I am using the WWW::Mechanize module. I tried ...
0
votes
1answer
57 views

searching for a tv show on http://next-episode.net/ using WWW::Mechanize (perl)

I'm trying to fetch the date of the next episode of a specific tv show using Mechanize in perl. # getting episode number & date # create a new browser use WWW::Mechanize; my $browser = ...
0
votes
1answer
40 views

WWW::Mechanize::Firefox clicking or selecting an option from a select?

How do you click or select an option in a select using WWW::Mechanize::Firefox. The select is within a form in this case. Code follows: <form name="formo"> <select class="selectc" ...
0
votes
1answer
106 views

Perl: WWW:Mechanize, getting Facebook profile image?

#!/usr/bin/perl #USE DECLARATIONS use strict; use warnings; use WWW::Mechanize; use Term::ANSIColor; #VARIABLE DECLARATIONS my $mech = WWW::Mechanize->new(); my $img; my $title; my $pic_page; my ...
0
votes
0answers
117 views

Perl mechanize url regex

I have this code. The first part executes a formula with some information. The second part searches for a link to a file, and downloads that file. The third part should search for a link on the ...
-1
votes
1answer
91 views

How to check if successfully logged in [closed]

I used WWW::Mechanize and I believe it successfully logged in, but I need to print whether it was successful or unsuccessful... Here is the script: my $url = "http://www.kapija.org"; my $username = ...
2
votes
2answers
66 views

How do you select specific HTML elements with no class or ID using WWW::Mechanize::Firefox?

I'm trying to loop through links on a page but i only want to loop through specific ones. The problem is that the links in <a> anchors do not have CSS ids or classes at all. eg. <a ...
0
votes
2answers
71 views

WWW::Mechanize::Firefox looping though links

I am using a foreach to loop through links. Do I need a $mech->back(); to continue the loop or is that implicit. Furthermore do I need a separate $mech2 object for nested for each loops? The code ...
1
vote
1answer
112 views

unable to access https page with WWW::mechanize using perl

I'm trying to access an https page using the WWW::Mechanize library in perl. Here's what I have: #!/usr/local/bin/perl -w use strict; use lib '/home/perl_modules/libwww-perl-5.836/lib'; use lib ...
0
votes
1answer
55 views

Perl Use of uninitialized value in addition (+) at.. WWW::Mechanize::Timed

I have the following very simple piece of code: #!/usr/bin/perl use strict; use warnings; use WWW::Mechanize::Timed; my $ua = WWW::Mechanize::Timed->new(); my $url = 'www.stackoverflow.com'; ...
1
vote
1answer
199 views

Javascript engine to parse and run Javascript web page (perl/python)

I have been trying since long to parse and run javascript webpages using python(2.4). Unfortunately I cannot use qt,webkit so most of the python based headless browsers are ruled out. I however ...
0
votes
0answers
136 views

Save HTML::TableExtract result with big5 encoding to MariaDB

I use HTML::TableExtract to extract data from HTML page that I capture with WWW::Mechanize, and save it to MariaDB afterward. It went well except running my query string with $dbh-do(); The HTML page ...
-2
votes
1answer
28 views

automating search for website like tair and soybase [closed]

Blockquote hi im new to perl, im doing a work on automating search for website like tair and soybase.. can u please suggest a few methods? thanx in advance any help is much appreciated!!
0
votes
2answers
91 views

Extract several rows with with HTML::TableExtract

I have made one script which will extract all the Row data from HTML <TR> tags. I am having 30 HTML <TR> tags on my HTML page. Based on count, my code will fetch particular row data. Let's ...
0
votes
1answer
310 views

Can't locate object method “new” via package “www::Mechanize” (perhaps you forgo t to load “www::Mechanize”?) at gmail.pl line 9, <stdin> line 2

i am very new to Perl however i was bit expertise in using perl modules i have worked on HTML::table extract but when i dealing with Mechanize module its keep saying me that CAN'T Locate object method ...
0
votes
1answer
111 views

Perl accessing the elements in a hash/hash reference data structure

I have a question I'm hoping you could help with as I am new to hashes and hash reference stuff? I have the following data structure: $VAR1 = { 'http://www.superuser.com/' => { ...
-1
votes
1answer
94 views

Perl WWW:Mechanize Accessing data in a hash reference

I have a question I'm hoping you could help with? This is the last part I need help with in understanding hash references Code: my $content_lengths; # this is at the top foreach my $url ( # ... ...
0
votes
2answers
49 views

Perl WWW::Mechanize Storing urls in a hash unless it has already been found

I have a question I'm hoping you could help with? foreach my $url ( keys %{$newURLs} ) { # first get the base URL and save its content length $mech->get($url); my $content_length = ...
1
vote
1answer
46 views

How to handle UTF16 warning in Perl Mechanize call

I get error while making mechanize call to websites having utf16 characters using mechanize in perl. It shows me this warning Parsing of undecoded UTF-16 at /usr/local/share/perl5/LWP/UserAgent.pm ...
1
vote
2answers
120 views

Perl WWW::Mechanize Comparing the response header content length of different urls

I have a question I'm hoping you could help with? I have two text files containing the following: FILE1.txt http://www.dog.com/ http://www.cat.com/ http://www.antelope.com/ FILE2.txt 1 2 Barry ...
0
votes
1answer
157 views

setting up mozrepl with firefox [closed]

gentlemen, running active perl: 5.16.2 Build 1602 on windows xp want to use mozrepl for perl what is needed the mozilla addon from here https://addons.mozilla.org/en-us/firefox/addon/mozrepl/ do i ...
2
votes
0answers
165 views

Automating Logins with Perl

I am trying to write a script which logs into my Intex account. For some reason I can't get past the login screen. I know the page is https and I'm not sure what I'm doing wrong in accounting for ...
1
vote
1answer
105 views

Extracting a line from a webpage using WWW::Mechanize module in perl

Here is my sample data from a webpage <hr> <h4>This is Second line</h4> Some Text Here<br> Some More Text Here<br> <h4>This is First line</h4> Mem Capacity ...
3
votes
1answer
84 views

Hosts file and Perl Mechanize

I am trying to make a perl script to send a get request to applications I have created. My applications are running on separate servers, so in order to make it seem like a domain, I added the ip's to ...
0
votes
0answers
191 views

Perl Mechanize Cookie Jar

I am sending an HTTP GET request to a site. However, I want to manually set some cookies while sending this request. I am using the cookie_jar provided by WWW::Mechanize: #! /usr/bin/perl use ...
2
votes
3answers
362 views

Filling out form in perl with WWW::Mechanize module

I am creating a script that logs into a web form in perl using the mechanize module and i'm getting the error : syntax error at /home/arty/scripts/gmail_pw_chngr.pl line 18, near "button" Execution of ...
0
votes
3answers
126 views

find_all_links() Perl function doesn't find all links

I'm starting with Perl and I'm trying to do a script that logs me out of a page (I already did the login one). The idea is, I'm trying to use find_link function from WWW::Mechanize (I also tried ...
1
vote
0answers
107 views

Net::SSL is breaking my Sys::SigAction timeout_call function

After using Sys::SigAction timeout_call for timeouts from the answer in my previous question (note: this time im using WWW::Mechanize instead of WWW::Mechanize::Timed), my 60 second timeout alarms ...
1
vote
1answer
84 views

Login to Website Requiring Another Website

I've been using the WWW::Mechanize perl module to try to login to a website that requires Steam authentication. So far I've been able to get it to the login page successfully, but once I submit my ...
2
votes
2answers
424 views

Scripts broke after upgrading LWP “certificate verify failed”

I have a lot of scripts, most of them based around WWW::Mechanize that scrape data off of misc hardware that is accessible via HTTPs. After upgrading most of my perl installation and its modules, all ...
3
votes
1answer
184 views

WWW::Mechanize::Firefox troubleshooting

I have MozRepl installed in my browser and set to start on startup and accept outside connections. So my questions are as follows 1) will simply running the code my $mech = ...
4
votes
1answer
111 views

Trouble following an image link with WWW::Mechanize

I'm working on a Perl script to get the "astronomy image of the day" and set it as my wallpaper. Then I would set a cronjob to do that everyday for me. But I'm having a hard time making the script ...
2
votes
2answers
263 views

Perl Mechanize bypass cert verification but encounters auth/login

im working within my company network and developing a new module for their systems. However, they have invalidated all ssl certificates thus i had to bypass the certificate verification. Using ...

1 2 3 4