Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Ambil semua elemen dengan class yang diberikan
- var buttons = document.querySelectorAll('.x193iq5w.xeuugli.x13faqbe.x1vvkbs.x1xmvt09.x1lliihq.x1s928wv.xhkezso.x1gmr53x.x1cpjm7i.x1fgarty.x1943h6x.xudqn12.x3x7a5m.x6prxxf.xvq8zen.x1s688f.x1dem4cn');
- // Fungsi untuk menghasilkan angka acak antara min dan max (inklusif)
- function getRandomInt(min, max) {
- return Math.floor(Math.random() * (max - min + 1)) + min;
- }
- // Fungsi untuk mengklik tombol secara bergantian dengan jeda acak antara 1-8 detik
- function clickButtonsSequentially() {
- var index = 0;
- function clickNextButton() {
- if (index < buttons.length) {
- buttons[index].click();
- index++;
- var randomDelay = getRandomInt(1000, 8000); // Jeda acak antara 1-8 detik
- setTimeout(clickNextButton, randomDelay);
- }
- }
- clickNextButton();
- }
- // Panggil fungsi untuk memulai pengklikan tombol secara bergantian
- clickButtonsSequentially();
Add Comment
Please, Sign In to add comment