Skip to content

Instantly share code, notes, and snippets.

@stern-shawn
Created January 24, 2018 20:43
Show Gist options
  • Save stern-shawn/f10e29a54cbb2a4a7375cc096bd8397d to your computer and use it in GitHub Desktop.
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
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