当前位置: 代码迷 >> JavaScript >> 页面加载后运行定时功能
  详细解决方案

页面加载后运行定时功能

热度:106   发布时间:2023-06-08 09:37:18.0

因此,我希望此功能每24小时运行一次并在网站上执行几个步骤:由于某种原因,它在第一个查询Selector之后停止运行。

我想发生的是:

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);
};

我在这里很迷路...

页面加载后4秒钟,所有setTimeout函数将同时运行。 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); 

我已经建立了一个来完成您想要的工作。

  相关解决方案