console.show(); tm = new Date(); t1 = 15; t2 = 59; t3 = 50; checkTime = function( tm1,tm3,tm3 ){ tm = new Date(); if( tm.getHours()>=t1 && tm.getMinutes()>=t2 && tm.getSeconds()>=t3 ) return true; return false; } t = text("提交").findOne(500); if( t ){ while( !checkTime() ){ tm = new Date(); console.log( tm.getHours()+":"+tm.getMinutes()+":"+tm.getSeconds() ); sleep(300); } console.clear(); console.log("开始点击"); while( true ){ t.click(); tm = new Date(); h = tm.getHours(); m = tm.getMinutes(); s = tm.getSeconds(); console.log( h+":"+m+":"+s ); sleep(240); } console.log("结束"); }else{ alert("未抓取到按钮,无法提交"); }