Select all tickboxes in a browser screen Chrome Developer Tools/Mozilla Developer tools. Go to the console and paste: $$('input[type="checkbox"').map(i => i.checked = true) This will select all the tickboxes on the page.