Created
January 24, 2018 20:43
-
-
Save stern-shawn/f10e29a54cbb2a4a7375cc096bd8397d to your computer and use it in GitHub Desktop.
Automatically fill out and submit responses to Gainz Box surveys, ain't nobody got time for that
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
document.querySelectorAll('.torro_element_radio input[id$="0"]').forEach((el) => el.checked = true); | |
document.querySelectorAll('.torro_element_checkbox input[id$="0"]').forEach((el) => el.checked = true); | |
document.querySelector('textarea').value = 'durr'; | |
document.querySelector('input[type="submit"]').click(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment