Created
February 5, 2020 15:15
-
-
Save bdelespierre/8e2dba72238664b408918252f2590f93 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let btns=Array.from(document.querySelectorAll('[data-control-name="people_connect"]')); | |
let next=function(){ | |
btns.shift().dispatchEvent(new MouseEvent('click', { bubbles: true, cancelable: true, view: window })) | |
setTimeout(next, 1000); | |
} | |
next(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment