I used WWW:Mechanize:Firefox couple of months. I have a problem in follow_link(). below is my code
$browser = WWW::Mechanize::Firefox->new(noproxy => 1);
$browser->get(<utl>);
....
$browser->click({xpath =>'//a[@name="addRow"]'});
print "Successfully click the Add link";
when i run this code click function works fine. It mean after click the link by perl program, it appear text box to enter customer mobile number or what ever. But problem is after appear text box the program never will execute.It mean program never go to print statement.
click() function call the java script and show the text box in the current site.When i use follow_link() same problem happen to me. I'll stuck with this issue couple of hours.
current site <a> tag is below
<a id="addRow" name="addRow" href="#"><img border="0" alt="Add a Mobile Number" src="/my/html/common/images/add_btn.gif"> </a>
Please anybody can help me
Thank you , Amila