Nexus,
подправила switch-input на switch-input check-switch, ставлю alert, 11 есть, 22 - нет
Получается, что дальше не выполняется?
alert ( '11' );
document.querySelectorAll('input[type="checkbox"].switch-input check-switch').forEach(input=>{
alert ( '22' );
input.checked=true;
input.dispatchEvent(new Event('change',{bubbles:true}));
});