Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
May 21, 2022 06:38 pm GMT

LinkedIn Invite Automation

Just paste it in console. Before that open as many connects you want to open all will be clicked.

var all = document.getElementsByTagName("button");for (var i=0, max=all.length; i < max; i++) {    if(all[i].innerText == 'Connect'){       all[i].click();    }     // Do something with the element here}

Original Link: https://dev.to/ayush_singh_dev/linkedin-invite-automation-4i77

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To