Re: WWW::Mechanize java navigation (Answer)

2005-03-17 Thread Peter Rabbitson
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

Re: WWW::Mechanize java navigation

2005-02-24 Thread rnmscott
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

Re: WWW::Mechanize java navigation

2005-02-24 Thread Chris Devers
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

Re: WWW::Mechanize java navigation

2005-02-24 Thread Todd W
"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

Re: WWW::Mechanize java navigation

2005-02-24 Thread perlmails
- 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

Re: WWW::Mechanize java navigation

2005-02-24 Thread perlmails
- 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

Re: WWW::Mechanize java navigation

2005-02-24 Thread perlmails
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

Re: WWW::Mechanize java navigation

2005-02-24 Thread Peter Rabbitson
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

Re: WWW::Mechanize java navigation

2005-02-24 Thread Peter Rabbitson
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