I need to verify that a drop-down is prefilled with text "All" which is present in the dropdown list in selenium using JAVA. Can anyone please help? Below is the HTML code.
<div _ngcontent-c3="" class="input-group">
<span _ngcontent-c3="" class="input-group-addon"><i _ngcontent-c3="" class="fa fa-flash"></i></span>
<select _ngcontent-c3="" class="form-control m-b ng-untouched ng-pristine ng-valid" id="report-status-id-select" name="reportStatusId">
<!---->
<option _ngcontent-c3="" value="0: 0">All</option>
<option _ngcontent-c3="" value="1: 4">In Action</option>
<option _ngcontent-c3="" value="2: 5">Completed</option>
<option _ngcontent-c3="" value="3: 6">Closed</option>
<option _ngcontent-c3="" value="4: 10">PJP</option>
</select>
</div>