pinalbhatt
6/9/2015 - 1:43 PM

Select-All-Checkboxes

Select-All-Checkboxes

//http://stackoverflow.com/questions/14245769/check-all-checkboxes-in-page-via-developer-tools

//run this in developer console.
(function() {
    var aa = document.querySelectorAll("input[type=checkbox]");
    for (var i = 0; i < aa.length; i++){
        aa[i].checked = true;
    }
})()