A quick reminder to myself that the Developer Console in Chrome or Firefix is useful to mass-select a bunch of checkboxes, if the site doesn’t have a “select all”-option (which really, it should).
Here are the steps to get all checkboxes on a page, checked:
- Right click anywhere on the page
- Hit “Inspect”
- Go to the “Console”
In there, copy/paste this and hit Enter:
$$('input[type="checkbox"').map(i => i.checked = true)
To test them out, here are some random checkboxes.
Check 1
Check 2
Check 3
Hope it saves you some time!