<select class="edit-doc-select" ng-model="vm.currentDoc.class.Id">
<option ng-repeat="class in vm.types" value="1" ng-selected="false">
Unclass </option>
<option ng-repeat ="class in vm.types" value="2" ng-selected="true">
class </option>
</select>
This this html code for drop down list on web application page. I want to select drop down list first, then one of the value - unclass OR class However, inspect element of drop down list control gives 'select' element For that I am using element(by.model("vm.currentDoc.class.Id")).
It throws element not visible error