页面加载后运行定时功能

时间:2015-07-16 13:50:56

标签: javascript jquery google-chrome firefox console

所以我希望这个功能每24小时运行一次并在网站上执行几个步骤: 出于某种原因,它会在第一个查询选择器之后停止运行。

我想要发生的是:

run script -> click element -> wait until the next page has loaded -> click next element.

非常感谢任何帮助!

window.onload = function(){
setTimeout(function() {
    document.querySelectorAll("[href*='0310']")[0].click();
  }, 4000);
//wait until next page loads
setTimeout(function() {
  document.querySelectorAll("[href*='0310']")[1].click();
},4000);
//wait until next page loads
setTimeout(function() {
  document.querySelectorAll("[href*='0310']")[1].click();
},4000);
//wait until next page loads
setTimeout(function() {
document.querySelectorAll("[type='checkbox']")[1].click();
},4000);
//wait until next page loads
setTimeout(function() {
document.querySelectorAll(".btn-primary")[2].click();
},4000);
};

我在这里迷失了......

1 个答案:

答案 0 :(得分:0)

所有setTimeout函数将在页面加载后4秒内同时运行。 setTimeout是异步完成的,因此您需要将它们更改为4,8,12,16和20秒。

setTimeout(function(){/*first*/}, 4000);
setTimeout(function(){/*second*/}, 8000); 
setTimeout(function(){/*third*/}, 12000); 
setTimeout(function(){/*fourth*/}, 16000); 
setTimeout(function(){/*fifth*/}, 20000); 

我已经设置了jsfiddle,可以满足您的需求。