Skip to content

Instantly share code, notes, and snippets.

View dogancankilment's full-sized avatar

Doğan Can Kilment dogancankilment

View GitHub Profile
@techguybiswa
techguybiswa / WhatsAppAutomationScript.js
Created March 11, 2019 18:36
What's App Automated "New Year Wish" Script
let listOfRecentContacts = document.getElementsByClassName("_3j7s9");
console.log("listOfRecentContacts.length = " + listOfRecentContacts.length);
var eventToSwitchMessageBox = new MouseEvent('mousedown', {
bubbles: true,
});
let count =1;
let openMessageBox = setInterval(function(){
// if(count>listOfRecentContacts.length) {
if(count>5) {
console.log("Clearing interval with clearInterval...");