Untitled

 avatar
unknown
plain_text
2 years ago
565 B
4
Indexable
function clickButton() {
  var button = document.querySelector('.textButtonV2');

  if (button) {
    button.click();
    console.log("Düğmeye tıklandı!");
  } else {
    console.log("Düğme bulunamadı.");
  }
}

function getRandomWaitTime() {
  // 5 ila 8 dakika arasında rastgele bir süre
  return Math.floor(Math.random() * (5 * 60 * 1000 - 8 * 60 * 1000 + 1) + 2 * 60 * 1000);
}

function performClick() {
  setInterval(function () {
    clickButton();
  }, getRandomWaitTime());
}

// Tıklama işlemini başlat
performClick();
Editor is loading...
Leave a Comment