LinkedIn-Bulk-Invitation-Withdraw-Script icon indicating copy to clipboard operation
LinkedIn-Bulk-Invitation-Withdraw-Script copied to clipboard

I have to click the button to withdraw. Can you update the script?

Open thenghi opened this issue 5 years ago • 1 comments

Hello,

As you can see in then attached file that the windows pop up to request user click the button. Can you fix it?

Thanks, Nghi

image

thenghi avatar May 27 '20 03:05 thenghi

See this: https://gist.github.com/berstend/7760130#gistcomment-3378639

var button1 = document.getElementsByClassName("invitation-card__action-btn artdeco-button artdeco-button--muted artdeco-button--3 artdeco-button--tertiary ember-view")
var button2 = document.getElementsByClassName("artdeco-modal__confirm-dialog-btn artdeco-button artdeco-button--2 artdeco-button--primary ember-view")
setInterval(()=>{
     for(var i=0;i<button1.length;i++){
          button1[i].click()
          button2[0].click()}},1000)

DolorHunter avatar Jul 17 '20 06:07 DolorHunter