wondering if anyone has come across a way to manually trigger an "onClick" event associated with a button within a page?
At the moment, the only way for my to get it working with the web recorder is to have the mouse hover over a button on a page which then shows the "download" button. This becomes a bit of a problem if I want to run the script with the PC screen locked. I have also tried using an IEClickTag function, but this doesn't successfully emulate a "hover" action to show the button.
In my specific instance, the HTML is as follows:
Code: Select all
<input name="downloadFile" type="button" class="button" value="Download" onclick="startDownload('filename')">
Code: Select all
onclick="startDownload('filename')"
Dominic Fichera