On Thu, Feb 24, 2005 at 12:45:01PM -0500, Peter Rabbitson wrote:
> Hello list. I had very good luck using the WWW::Mechanize object for various
> automated data collectors until I stumbled over
> http://www.mymerchantview.net. As you can imagine the problems begin when I
> do my first ->follow_link
Quoting Peter Rabbitson <[EMAIL PROTECTED]>:
>
> Whereas my original question was:
>
> What can I use that would be as functional as WWW::Mechanize while at the
> same time compatible with the site mentioned above.
>
> --
I'd be interested in an answer to this too, as I have a similar sort of
On Thu, 24 Feb 2005, Peter Rabbitson wrote:
> What can I use that would be as functional as WWW::Mechanize while at
> the same time [Javascript aware].
To do this properly, you need to have a proper Javascript engine. I'm
not aware of any Javascript hooks for Perl, but then, all modern web
bro
"Peter Rabbitson" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
>
>
> On Thu, Feb 24, 2005 at 03:11:08PM -0600, [EMAIL PROTECTED] wrote:
>
>
> <---snip whole bunch of misunderstaning--->
>
> > You have your answer then.. I guess.
> > >From FAQ=WWW::Mechanize;
> >
> > How can I get
- Original Message -
From: "Peter Rabbitson" <[EMAIL PROTECTED]>
To:
Sent: Thursday, February 24, 2005 3:45 PM
Subject: Re: WWW::Mechanize java navigation
On Thu, Feb 24, 2005 at 03:11:08PM -0600, [EMAIL PROTECTED] wrote:
<---snip whole bunch of misunderstanin
- Original Message -
From: "Peter Rabbitson" <[EMAIL PROTECTED]>
To:
Sent: Thursday, February 24, 2005 3:02 PM
Subject: Re: WWW::Mechanize java navigation
use WWW::Mechanize;
use Crypt::SSLeay;
my $m_crawl = WWW::Mechanize->new;
$m_crawl->get ('http://mym
Have you installed Crypt::SSLeay for https:// ?
Could you print the header at least with your code?
- Original Message -
From: "Peter Rabbitson" <[EMAIL PROTECTED]>
To:
Sent: Thursday, February 24, 2005 11:45 AM
Subject: WWW::Mechanize java navigation
Hello list. I had very good luck us
On Thu, Feb 24, 2005 at 03:11:08PM -0600, [EMAIL PROTECTED] wrote:
<---snip whole bunch of misunderstaning--->
> You have your answer then.. I guess.
> >From FAQ=WWW::Mechanize;
>
> How can I get WWW::Mechanize to execute this JavaScript?
> You can't. JavaScript is entirely client-based, and
use WWW::Mechanize;
use Crypt::SSLeay;
my $m_crawl = WWW::Mechanize->new;
$m_crawl->get ('http://mymerchantview.net');
$m_crawl->follow_link (n => '1');
print $m_crawl->content;
the above code yields:
501 Protocol scheme 'javascript' is not supported
On Thu, Feb 24, 2005 at 02:20:29PM -0600