Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Ambil semua elemen dengan class yang diberikan
- var buttons = document.querySelectorAll('.x1i10hfl.x1qjc9v5.xjbqb8w.xjqpnuy.xa49m3k.xqeqjp1.x2hbi6w.x13fuv20.xu3j5b3.x1q0q8m5.x26u7qi.x972fbf.xcfux6l.x1qhh985.xm0m39n.x9f619.x1ypdohk.xdl72j9.x2lah0s.xe8uvvx.xdj266r.x11i5rnm.xat24cr.x1mh8g0r.x2lwn1j.xeuugli.xexx8yu.x4uap5.x18d9i69.xkhd6sd.x1n2onr6.x16tdsg8.x1hl2dhg.x1ja2u2z.x1t137rt.x1o1ewxj.x3x9cwd.x1e5q0jg.x13rtm0m.x3nfvp2.x1q0g3np.x87ps6o.x1lku1pv.x1a2a7pz.x5ve5x3');
- // 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(5000, 10000); // 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