Created
September 3, 2019 09:55
-
-
Save podolskyi/e683240585a2326961cd7e32d1eda521 to your computer and use it in GitHub Desktop.
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
let allShareButtons = document.getElementsByClassName('share'); | |
for (let currentItem = 0; currentItem < allShareButtons.length; currentItem++) { | |
allShareButtons[currentItem].click(); | |
console.log(`Next item ${currentItem}`); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment