How do we check Twitter Bootstrap radio buttons using Laravel Dusk?
According to twitter bootstrap, this is how we do a radio: <div class="radio"> <label> <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked> Option one is this and that—be sure to include why it's great </label> </div> And this is my code: $browser->click('#menu-reports')…