Created
September 21, 2017 08:23
-
-
Save adityabhushan/b2f285af3ec6e0c57116c9d35feffc19 to your computer and use it in GitHub Desktop.
Find People who joined and left your whatsapp group
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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