I have told you a couple of times to note the differences between the
$ie->find_link() method, which for some reason you insist on using, and the
$ie->follow_link() method. In your previous examples where you failed to show us any of the JavaScript clicking an image ran a JavaScript function. Now for some reason this seems to have changed and you just want to submit a form? Regardless...
First off, please read and understand the
Win32::IE::Mechanize documentation, I appreciate that this may not be easy if English is not your native language.
Once again you are using
$ie->find_link(); which does not click a link, it returns an object describing the link.
If you read the
Win32::IE::Mechanize documentation you will see that there is an entire section of form methods, and examples for populating fields and submitting forms using the
$ie->submit_form() method. I suggest you go read up on how to use this to populate these fields, and submit the form. There is an example in the synopsis showing exactly how to do this.
Update: typo s/not to note/to note/
Hope this helps
Martin