>>619
ローカルファイルで試してみました。動きました。
<html>
<head><title>test</title></head>
<body>
<form>
<input type="button" value="test" onclick="alert('test')">
</form>
<script>
setTimeout(function() {document.forms[0].elements[0].click()}, 3000);
</script>
</body>
</html>