are there any free linkedin automation bots ?
No free ones from my research that ive done. There is another post in BHF shows a script to auto send invited to your network so you can't query to build a targeted audience. Also I would recommend you keep it to under 30 adds a day. You just need to do is go to linkedin >> my network tab and copy and paste the script into your browser console and press enter
The script is here
let arrUsers = [];
var numberOfUsers = 0;
var intervalUsers;
var lastWindowHeight = -1;
function startScript(numberOfCon){
numberOfUsers = numberOfCon;
connectWith();
}
function connectWith(){
runInterval().then(value => sendConnections());
}
function runInterval() {
return new Promise((resolve, reject) => {
intervalUsers = setInterval(function(){
window.scrollTo(0, document.body.scrollHeight);
if(numberOfUsers<=arrUsers.length || document.body.scrollHeight == lastWindowHeight){
console.log("Finishing interval, we already got enough users or we can not find anymore...");
clearInterval(intervalUsers);
resolve(1);
}
arrUsers = document.querySelectorAll('button[data-control-name="invite"]');
console.log("We got " + arrUsers.length + " users (for now)...");
lastWindowsHeight = document.body.scrollHeight;
}, 2000);
})
}
function sendConnections(){
var totalConnectionsSent = 0;
for (let usr of arrUsers) {
if (totalConnectionsSent >= numberOfUsers) {
break;
}
usr.click();
totalConnectionsSent += 1;
}
console.log("FINISHED!");
console.log("Sent " + totalConnectionsSent + " connections.");
alert("FINISHED!\n\nSent " + totalConnectionsSent + " connections.\n");
}
//
// Here is the only change you have to do: Change the number 10 with the number of connections you want to do: 1, 10, 37, 2184... and press enter.
startScript(10);