Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Dear Monks,
I am trying to do a $mech->select but it is giving me an error like "Input "search_form:country_id" not found". Actually the "search_form:country_id" is present in the source code. I can not find where the Issue really is. The $mech->submit is also not submitting! Can anyone pls suggest me where i am getting wrong. The code is provided below.
use strict; use WWW::Mechanize; my $url = "https://jobs3.netmedia1.com/cp/faces/job_search?null"; my $mech = WWW::Mechanize->new(); print "$url\n"; eval{ $mech->agent_alias('Mac Safari'); $mech->get($url); $mech->form_name('myForm'); $mech->select('search_form:category_ext_id','0'); $mech->field('search_form:continent_id','1'); my @values = ("25","49"); $mech->select('search_form:country_id',\@values); $mech->submit(); };
Thank you all.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Problem with www::mechanize Select. (gzip)
by tye (Sage) on Nov 25, 2012 at 20:01 UTC | |
|
Re: Problem with www::mechanize Select.
by Anonymous Monk on Nov 25, 2012 at 16:32 UTC | |
by Anonymous Monk on Nov 25, 2012 at 17:29 UTC | |
by Anonymous Monk on Nov 25, 2012 at 18:39 UTC |