Could you provide a suggestion for locating the <input>
element in the DOM below? I have used by.repeater but can only reach the <td>
element. Any additional protractor locator I try does not find the <input>
element underneath. Thank you in advance!
<table class="table table-striped table-hover">
<thead>
<tbody class="ng-scope" ng-repeat="devices in collection track by $index" >
<tr class="ng-scope ng-isolate-scope" st-select-row="devices" st-select-mode="single">
<td>
<chk-select class="ng-isolate-scope" emitselectedrec="selectedRows" chkmode="multiple" rowobj="clusters">
<input type="checkbox" ng-transclude="" ng-click="pushToSelected(row)" uid="1">
</chk-select>
</td>
</tr>
</tbody>
</table>