LinkedIn-Bulk-Invitation-Withdraw-Script
LinkedIn-Bulk-Invitation-Withdraw-Script copied to clipboard
I have to click the button to withdraw. Can you update the script?
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

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)