Using JavaScript to auto click report runner controls

setTimeout(function(){
  if([Report] != 'done') {
    $('#ifRR15').contents().find('input[type="button"]').click();
  }
},500);
 
NOTE - Replace [Report] with the name of the Report Runner control that you would like to auto click
 
 
 
If the report runner control fails to load for any reason the sending will fail and there may be no user notification.