AirClaim

Скрипт для Galxe

Sep 12th, 2023
883
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.31 KB | Cryptocurrency | 0 0
  1. const elementsToClick = document.querySelectorAll('.d-flex.height-100.width-100.click-area');
  2.  
  3. const clickElement = (element) => {
  4.   const event = new MouseEvent('click', {
  5.     view: window,
  6.     bubbles: true,
  7.     cancelable: true
  8.   });
  9.   element.dispatchEvent(event);
  10. };
  11.  
  12. elementsToClick.forEach(clickElement);
Tags: twitter Galxe
Add Comment
Please, Sign In to add comment