Hi,


I am trying to access a web page using WWW::Mechanize and i come across a situation where i need to click on a button with no name. I tried button_click option of WWW::Mechanize with both value and number parameter but the program throws an error in both the cases.


THE HTML CODE:

<input type="button" value="Login" class="inputs2" onClick="lookup();">


I looked up the JavaScript Code but could not understand head-or-tail from it. Below is the corresponding JavaScript code.
<script type="text/javascript"> function lookup() { userO=document.getElementById("loginname"); passO=document.getElementById("loginpass"); user=userO.value; pass=passO.value; if(user.length == 0 || pass.length==0) { $('#box').hide(); } else { $('#box').show(); $('#serverlisted').html('Loading Connection Routine'); mns=document.getElementById("mns"); ck=mns.checked; if (ck==true){ $.post("rpc.f", {credenU: ""+user+"", credenP: ""+pass+"", +mns: 1}, function(data){ if(data.length >0) { $('#serverlisted').html(data); } }); } else{ $.post("rpc.f", {credenU: ""+user+"", credenP: ""+pass+""} +, function(data){ if(data.length >0) { $('#serverlisted').html(data); } }); } } } // lookup </script>
In the above code,
loginname = Name of the text box for user name
loginpass = Name of the text box for password
mns = A check box to preserve our login for 10 hours
Could any of the monks please help me in resolving this issue?


Thanks

In reply to Accessing unnamed button using WWW::Mechanize by venkatesan_G02

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.