Skip to content

Instantly share code, notes, and snippets.

@adityabhushan
Created September 21, 2017 08:23
Show Gist options
  • Save adityabhushan/b2f285af3ec6e0c57116c9d35feffc19 to your computer and use it in GitHub Desktop.
Save adityabhushan/b2f285af3ec6e0c57116c9d35feffc19 to your computer and use it in GitHub Desktop.
Find People who joined and left your whatsapp group
var obj = document.getElementsByClassName('message message-gp2 message-system tail')
for (var i = 0; i < obj.length; i++){
console.log(obj[i].childNodes[0].childNodes[8].childNodes[4].textContent+' - '+obj[i].childNodes[0].childNodes[8].childNodes[5].textContent)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment