Hi,
I am working on tool named as ConfirmIT in which we program online surveys. I want to generate a tool which will auto click and populate the responses in database. I have 2 options to go with i.e. Javascript and Java. I have written code in javascript. The thing is it doesn't select option randomly on the screen and neither it processes things in background.
<head>
<script>
function autoClick(){
document.getElementById('linkToClick').click();
}
</script>
</head>
<body onload="setTimeout('autoClick();',3000);">
<a id="linkToClick" href="http://survey-na.researchnow.com/wix/p1035711876.aspx?src=98" target="_blank">DEMO</a>
</body>